-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathnextflow_schema.json
94 lines (94 loc) · 1.76 KB
/
nextflow_schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com//master/nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"properties": {
"publishDir": {
"type": "string",
"default": "results",
"format": "directory-path"
},
"bam_g1": {
"type": "array"
},
"bam_g2": {
"type": "array"
},
"gtf": {
"type": "string",
"format": "file-path"
},
"is_single_end": {
"type": "boolean"
},
"readLength": {
"type": "integer"
},
"nthread": {
"type": "integer",
"default": 1
},
"out_dir": {
"type": "string"
},
"lib_type": {
"type": "string",
"default": "fr-unstranded"
},
"variable_read_length": {
"type": "boolean"
},
"anchorLength": {
"type": "integer"
},
"tstat": {
"type": "integer",
"default": 1
},
"cstat": {
"type": "number",
"default": 0.0001
},
"statoff": {
"type": "boolean"
},
"paired_stats": {
"type": "boolean"
},
"darts_model": {
"type": "boolean"
},
"darts_cutoff": {
"type": "number",
"default": 0.05
},
"novelSS": {
"type": "boolean"
},
"mil": {
"type": "integer",
"default": 50
},
"mel": {
"type": "integer",
"default": 500
},
"allow_clipping": {
"type": "boolean"
},
"individual_counts": {
"type": "boolean"
},
"machine_mem_gb": {
"type": "integer",
"default": 4
},
"rmats_version": {
"type": "string",
"default": "v4.3.0"
}
},
"required": ["publishDir", "bam_g1", "gtf", "readLength", "out_dir"]
}