forked from clara-parabricks-workflows/parabricks-nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
193 lines (193 loc) · 4.69 KB
/
nextflow_schema.json
File metadata and controls
193 lines (193 loc) · 4.69 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com//master/nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"$defs": {
"input_output_options": {
"title": "Input/output options",
"type": "object",
"fa_icon": "fas fa-terminal",
"description": "Define where the pipeline should find input data and save output data.",
"required": ["input", "outdir"],
"properties": {
"input": {
"type": "string",
"format": "file-path",
"exists": true,
"schema": "assets/schema_input.json",
"mimetype": "text/csv",
"pattern": "^\\S+\\.csv$",
"description": "Path to comma-separated file containing information about the samples in the experiment.",
"help_text": "You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row.",
"fa_icon": "fas fa-file-csv"
},
"outdir": {
"type": "string",
"format": "directory-path",
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
"fa_icon": "fas fa-folder-open",
"default": "./results"
},
"ignore_samples": {
"type": "string",
"default": "['Unassigned', 'PhiX', 'phiX', 'CBPhiX', 'Undetermined']"
}
}
},
"parabricks": {
"title": "Parabricks",
"type": "object",
"description": "",
"default": "",
"properties": {
"assay": {
"type": "string",
"default": "WGS"
},
"target_region_bed": {
"type": "string"
},
"known_sites": {
"type": "string"
},
"proposed_variants": {
"type": "string"
},
"model_file": {
"type": "string"
}
}
},
"reference": {
"title": "Reference",
"type": "object",
"description": "",
"default": "",
"properties": {
"genome": {
"type": "string"
},
"igenomes_base": {
"type": "string",
"default": "s3://ngi-igenomes/igenomes"
}
}
},
"infrastructure": {
"title": "Infrastructure",
"type": "object",
"description": "",
"default": "",
"properties": {
"batch_size": {
"type": "integer",
"default": 12
},
"max_cpus": {
"type": "integer",
"default": 48,
"hidden": true
},
"max_memory": {
"type": "string",
"default": "192.GB",
"hidden": true
},
"max_time": {
"type": "string",
"default": "4.h",
"hidden": true
}
}
},
"multiqc": {
"title": "MultiQC",
"type": "object",
"description": "",
"default": "",
"properties": {
"multiqc_config": {
"type": "string"
},
"max_multiqc_email_size": {
"type": "string",
"default": "25.MB"
},
"multiqc_title": {
"type": "string"
},
"multiqc_logo": {
"type": "string"
}
}
}
},
"allOf": [
{
"$ref": "#/$defs/input_output_options"
},
{
"$ref": "#/$defs/parabricks"
},
{
"$ref": "#/$defs/reference"
},
{
"$ref": "#/$defs/infrastructure"
},
{
"$ref": "#/$defs/multiqc"
}
],
"properties": {
"publish_dir_mode": {
"type": "string",
"default": "copy",
"hidden": true
},
"igenomes_ignore": {
"type": "boolean",
"hidden": true
},
"fasta": {
"type": "string",
"hidden": true
},
"fasta_fai": {
"type": "string",
"hidden": true
},
"bwa_index": {
"type": "string",
"hidden": true
},
"custom_config_version": {
"type": "string",
"default": "master",
"hidden": true
},
"custom_config_base": {
"type": "string",
"default": "https://raw.githubusercontent.com/nf-core/configs/master",
"hidden": true
},
"config_profile_description": {
"type": "string",
"hidden": true
},
"config_profile_contact": {
"type": "string",
"hidden": true
},
"config_profile_url": {
"type": "string",
"hidden": true
},
"config_profile_name": {
"type": "string",
"hidden": true
}
}
}