-
Notifications
You must be signed in to change notification settings - Fork 0
/
parameters.schema.json
411 lines (411 loc) · 13.4 KB
/
parameters.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
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"main_options": {
"title": "Main options",
"type": "object",
"properties": {
"reads": {
"title": "Input files",
"type": "string",
"description": "Specify the location of your input FastQ files.",
"default": "'data/*{1,2}.fastq.gz'"
},
"outdir": {
"title": "Output directory",
"type": "string",
"description": "Set where to save the results from the pipeline",
"default": "./results"
},
"pico": {
"title": "Library type: Pico",
"type": "boolean",
"description": "Set trimming and standedness settings for the SMARTer Stranded Total RNA-Seq Kit - Pico Input kit.",
"default": false
},
"singleEnd": {
"title": "Single-end sequencing input",
"type": "boolean",
"description": "Use single-end sequencing inputs instead of paired-end.",
"default": false
},
"forward_stranded": {
"title": "Forward stranded",
"type": "boolean",
"description": "Samples are made using a forward-stranded library type.",
"default": false
},
"reverse_stranded": {
"title": "Reverse stranded",
"type": "boolean",
"description": "Samples are made using a reverse-stranded library type.",
"default": false
}
}
},
"read_trimming": {
"title": "Read trimming",
"type": "object",
"properties": {
"clip_r1": {
"title": "Read Clipping: 5' R1",
"type": "integer",
"description": "Instructs Trim Galore to remove bp from the 5' end of read 1 (or single-end reads).",
"default": 0
},
"clip_r2": {
"title": "Read Clipping: 5' R1",
"type": "integer",
"description": "Instructs Trim Galore to remove bp from the 5' end of read 2 (paired-end reads only).",
"default": 0
},
"three_prime_clip_r1": {
"title": "Read Clipping: 3' R1",
"type": "integer",
"description": "Instructs Trim Galore to remove bp from the 3' end of read 1 AFTER adapter/quality trimming has been performed.",
"default": 0
},
"three_prime_clip_r2": {
"title": "Read Clipping: 3' R2",
"type": "integer",
"description": "Instructs Trim Galore to re move bp from the 3' end of read 2 AFTER adapter/quality trimming has been performed.",
"default": 0
}
}
},
"alignment": {
"title": "Alignment",
"type": "object",
"properties": {
"aligner": {
"title": "Alignment tool",
"type": "string",
"description": "Choose whether to align reads with STAR or HISAT2",
"enum": [
"star",
"hisat2"
],
"default": "star"
},
"genome": {
"title": "Alignment reference iGenomes key",
"type": "string",
"description": "Ref. genome key for iGenomes",
"enum": [
"",
"GRCh37",
"GRCm38",
"TAIR10",
"EB2",
"UMD3.1",
"WBcel235",
"CanFam3.1",
"GRCz10",
"BDGP6",
"EquCab2",
"EB1",
"Galgal4",
"Gm01",
"Mmul_1",
"IRGSP-1.0",
"CHIMP2.1.4",
"Rnor_6.0",
"R64-1-1",
"EF2",
"Sbi1",
"Sscrofa10.2",
"AGPv3"
],
"default": ""
},
"star_index": {
"title": "STAR index",
"type": "string",
"description": "Path to STAR index",
"default": ""
},
"hisat2_index": {
"title": "HISAT2 index",
"type": "string",
"description": "Path to HiSAT2 index",
"default": ""
},
"fasta": {
"title": "FASTA",
"type": "string",
"description": "Path to Fasta reference",
"default": ""
},
"gtf": {
"title": "GTF",
"type": "string",
"description": "Path to GTF file",
"default": ""
},
"gff": {
"title": "GFF",
"type": "string",
"description": "Path to GFF3 file",
"default": ""
},
"bed12": {
"title": "BED12",
"type": "string",
"description": "Path to bed12 file",
"default": ""
},
"igenomes_base": {
"title": "iGenomes base path",
"type": "string",
"description": "Base path for iGenomes reference files",
"default": "s3://ngi-igenomes/igenomes/"
},
"splicesites": {
"title": "HISAT2 splice sites file",
"type": "string",
"description": "Optional splice-sites file for building a HISAT2 alignment index",
"default": ""
}
}
},
"featurecount_settings": {
"title": "FeatureCount settings",
"type": "object",
"properties": {
"fcGroupFeatures": {
"title": "FeatureCounts Group Features",
"type": "string",
"description": "By default, the pipeline uses `gene_name` as the default gene identifier group. Specifying `--fcGroupFeatures` uses a different category present in your provided GTF file.",
"default": "gene_id"
},
"fcGroupFeaturesType": {
"title": "FeatureCounts Group Features Biotype",
"type": "string",
"description": "GTF attribute name that gives the biotype of a feature.",
"default": "gene_biotype"
},
"fcExtraAttributes": {
"title": "FeatureCounts Extra Gene Names",
"type": "string",
"description": "By default the pipeline uses `gene_names` as additional gene identifiers apart from ENSEMBL identifiers. --fcExtraAttributes is passed to featureCounts as an --extraAttributes parameter",
"default": ""
}
}
},
"pipeline_defaults": {
"title": "Pipeline defaults",
"type": "object",
"properties": {
"container": {
"title": "Software container",
"type": "string",
"description": "Dockerhub address for pipeline container",
"default": "nfcore/rnaseq:latest"
},
"plaintext_email": {
"title": "Plain text email",
"type": "boolean",
"description": "Set to receive plain-text e-mails instead of HTML formatted.",
"default": false
},
"help": {
"title": "Help",
"type": "boolean",
"description": "Specify to show the pipeline help text.",
"default": false
},
"sampleLevel": {
"title": "sampleLevel",
"type": "boolean",
"description": "Turn off project-level analysis (edgeR MDS plot and heatmap).",
"default": false
},
"email": {
"title": "Your email address",
"type": "string",
"description": "Your email address, required to receive completion notification.",
"default": ""
},
"max_cpus": {
"title": "Maximum available CPUs",
"type": "integer",
"description": "Use to set a top-limit for the default CPUs requirement for each process.",
"default": 16
},
"max_time": {
"title": "Maximum available time",
"type": "string",
"description": "Use to set a top-limit for the default time requirement for each process.",
"default": "10d"
},
"max_memory": {
"title": "Maximum available memory",
"type": "string",
"description": "Use to set a top-limit for the default memory requirement for each process.",
"default": "128.GB"
},
"saveTrimmed": {
"title": "Save Trimmed FastQ files",
"type": "boolean",
"description": "Save the trimmed FastQ files the the results directory.",
"default": false
},
"saveAlignedIntermediates": {
"title": "Save Aligned Intermediate BAM files",
"type": "boolean",
"description": "Save intermediate BAM files the the results directory.",
"default": false
},
"saveReference": {
"title": "Save reference genome index",
"type": "boolean",
"description": "Save the generated reference files the the results directory.",
"default": false
},
"maxMultiqcEmailFileSize": {
"title": "Maximum MultiQC email file size",
"type": "string",
"description": "Theshold size for MultiQC report to be attached in notification email. If file generated by pipeline exceeds the threshold, it will not be attached.",
"default": "25.MB"
}
}
},
"skip_pipeline_steps": {
"title": "Skip pipeline steps",
"type": "object",
"properties": {
"skip_qc": {
"title": "Skip all QC steps, apart from MultiQC",
"type": "boolean",
"default": false
},
"skip_multiqc": {
"title": "Skip MultiQC",
"type": "boolean",
"default": false
},
"skip_genebody_coverage": {
"title": "Skip RSeQC gene body coverage",
"type": "boolean",
"default": false
},
"skip_edger": {
"title": "Skip edgeR QC analysis",
"type": "boolean",
"default": false
},
"skip_dupradar": {
"title": "Skip DupRadar QC",
"type": "boolean",
"default": false
},
"skip_rseqc": {
"title": "Skip RSeQC steps, apart from Gene body coverage",
"type": "boolean",
"default": false
},
"skip_preseq": {
"title": "Skip Preseq analysis",
"type": "boolean",
"default": false
},
"skip_fastqc": {
"title": "Skip FastQC",
"type": "boolean",
"default": false
}
}
},
"cluster_job_submission": {
"title": "Cluster job submission",
"type": "object",
"properties": {
"project": {
"title": "Cluster project",
"type": "string",
"description": "For use on HPC systems where a project ID is required for job submission",
"default": ""
}
}
},
"aws_cloud_usage": {
"title": "AWS cloud usage",
"type": "object",
"properties": {
"awsregion": {
"title": "AWS Region",
"type": "string",
"description": "The AWS region to run your job in.",
"default": "eu-west-1"
},
"awsqueue": {
"title": "AWS job queue",
"type": "string",
"description": "The JobQueue that you intend to use on AWS Batch.",
"default": ""
},
"tracedir": {
"title": "Trace directory",
"type": "string",
"description": "Set to where the pipeline trace should be saved. Set to local path when using AWS on S3.",
"default": "./results/pipeline_info"
}
}
},
"advanced": {
"title": "Advanced",
"type": "object",
"properties": {
"subsampFilesizeThreshold": {
"title": "Subsample file-size threshold",
"type": "integer",
"description": "Defines the threshold in BAM file size (in bytes) at which data subsampling is used prior to the RSeQC `gene_body_coverage` step.",
"default": 10000000000
},
"name": {
"title": "Custom run name",
"type": "string",
"description": "Helper variable. Do not set, use -name instead.",
"default": ""
},
"hisatBuildMemory": {
"title": "HISAT2 indexing: required memory for splice sites in GB",
"type": "integer",
"description": "HISAT2 needs a very large amount of memory to build an index with splice sites. If the available memory is below this threshold, the index build will proceed without splicing information.",
"default": 200
},
"seqCenter": {
"title": "Sequencing center",
"type": "string",
"description": "Add sequencing center in @RG line of output BAM header",
"default": ""
},
"star_memory": {
"title": "STAR memory",
"type": "string",
"description": "Instead of using the default amount available, force STAR to use a given amount of memory",
"default": ""
},
"multiqc_config": {
"title": "MultiQC Config",
"type": "string",
"description": "Path to a config file for MultiQC",
"default": "/Users/ewels/GitHub/nf-core/rnaseq/assets/multiqc_config.yaml"
},
"unstranded": {
"title": "Unstranded",
"type": "boolean",
"description": "Force the library strandedness to be unstranded",
"default": false
},
"readPaths": {
"title": "Read Paths",
"type": "string",
"description": "For use with nextflow config files only",
"default": ""
}
}
}
}
}