forked from nf-core/mag
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnextflow_schema.json
More file actions
535 lines (535 loc) · 30.3 KB
/
nextflow_schema.json
File metadata and controls
535 lines (535 loc) · 30.3 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
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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/nf-core/mag/master/nextflow_schema.json",
"title": "nf-core/mag pipeline parameters",
"description": "Assembly, binning and annotation of metagenomes",
"type": "object",
"definitions": {
"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.",
"properties": {
"input": {
"type": "string",
"fa_icon": "fas fa-dna",
"description": "Input FastQ files or TSV file.",
"help_text": "Use this to specify the location of your input FastQ files. For example:\n\n```bash\n--input 'path/to/data/sample_*_{1,2}.fastq'\n```\n\nAll files will get assigned the same group ID (by default only used to compute co-abundances for binning). Please note the following requirements:\n\n1. The path must be enclosed in quotes\n2. The path must have at least one `*` wildcard character\n3. When using the pipeline with paired end data, the path must use `{1,2}` notation to specify read pairs.\n\nIf left unspecified, a default pattern is used: `data/*{1,2}.fastq.gz`. \n\nAlternatively, to assign different groups or to include long reads for hybrid assembly with metaSPAdes, you can specify a TSV input file (requires a '.tsv' suffix) with 4 or 5 headerless columns: Sample_Id, Group_Id, Short_Reads_1, Short_Reads_2 [, Long_Reads]."
},
"input_paths": {
"type": "string",
"description": "Paths to input FastQ files for tests.",
"hidden": true
},
"single_end": {
"type": "boolean",
"description": "Specifies that the input is single-end reads.",
"fa_icon": "fas fa-align-center",
"help_text": "By default, the pipeline expects paired-end data. If you have single-end data, you need to specify `--single_end` on the command line when you launch the pipeline. A normal glob pattern, enclosed in quotation marks, can then be used for `--input`. For example:\n\n```bash\n--single_end --input '*.fastq'\n```\n\nIt is not possible to run a mixture of single-end and paired-end files in one run."
},
"outdir": {
"type": "string",
"description": "The output directory where the results will be saved.",
"default": "./results",
"fa_icon": "fas fa-folder-open"
},
"email": {
"type": "string",
"description": "Email address for completion summary.",
"fa_icon": "fas fa-envelope",
"help_text": "Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits. If set in your user config file (`~/.nextflow/config`) then you don't need to specify this on the command line for every run.",
"pattern": "^([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5})$"
}
}
},
"reference_genome_options": {
"title": "Reference genome options",
"type": "object",
"fa_icon": "fas fa-dna",
"description": "Options for the reference genome indices used to align reads.",
"properties": {
"igenomes_base": {
"type": "string",
"description": "Directory / URL base for iGenomes references.",
"default": "s3://ngi-igenomes/igenomes/",
"fa_icon": "fas fa-cloud-download-alt",
"hidden": true
},
"igenomes_ignore": {
"type": "boolean",
"description": "Do not load the iGenomes reference config.",
"fa_icon": "fas fa-ban",
"hidden": true,
"help_text": "Do not load `igenomes.config` when running the pipeline. You may choose this option if you observe clashes between custom parameters and those supplied in `igenomes.config`."
}
}
},
"generic_options": {
"title": "Generic options",
"type": "object",
"fa_icon": "fas fa-file-import",
"description": "Less common options for the pipeline, typically set in a config file.",
"help_text": "These options are common to all nf-core pipelines and allow you to customise some of the core preferences for how the pipeline runs.\n\nTypically these options would be set in a Nextflow config file loaded for all pipeline runs, such as `~/.nextflow/config`.",
"properties": {
"help": {
"type": "boolean",
"description": "Display help text.",
"hidden": true,
"fa_icon": "fas fa-question-circle"
},
"publish_dir_mode": {
"type": "string",
"default": "copy",
"hidden": true,
"description": "Method used to save pipeline results to output directory.",
"help_text": "The Nextflow `publishDir` option specifies which intermediate files should be saved to the output directory. This option tells the pipeline what method should be used to move these files. See [Nextflow docs](https://www.nextflow.io/docs/latest/process.html#publishdir) for details.",
"fa_icon": "fas fa-copy",
"enum": [
"symlink",
"rellink",
"link",
"copy",
"copyNoFollow",
"move"
]
},
"name": {
"type": "string",
"description": "Workflow name.",
"fa_icon": "fas fa-fingerprint",
"hidden": true,
"help_text": "A custom name for the pipeline run. Unlike the core nextflow `-name` option with one hyphen this parameter can be reused multiple times, for example if using `-resume`. Passed through to steps such as MultiQC and used for things like report filenames and titles."
},
"email_on_fail": {
"type": "string",
"description": "Email address for completion summary, only when pipeline fails.",
"fa_icon": "fas fa-exclamation-triangle",
"pattern": "^([a-zA-Z0-9_\\-\\.]+)@([a-zA-Z0-9_\\-\\.]+)\\.([a-zA-Z]{2,5})$",
"hidden": true,
"help_text": "This works exactly as with `--email`, except emails are only sent if the workflow is not successful."
},
"plaintext_email": {
"type": "boolean",
"description": "Send plain-text email instead of HTML.",
"fa_icon": "fas fa-remove-format",
"hidden": true,
"help_text": "Set to receive plain-text e-mails instead of HTML formatted."
},
"max_multiqc_email_size": {
"type": "string",
"description": "File size limit when attaching MultiQC reports to summary emails.",
"default": "25.MB",
"fa_icon": "fas fa-file-upload",
"hidden": true,
"help_text": "If file generated by pipeline exceeds the threshold, it will not be attached."
},
"monochrome_logs": {
"type": "boolean",
"description": "Do not use coloured log outputs.",
"fa_icon": "fas fa-palette",
"hidden": true,
"help_text": "Set to disable colourful command line output and live life in monochrome."
},
"multiqc_config": {
"type": "string",
"description": "Custom config file to supply to MultiQC.",
"fa_icon": "fas fa-cog",
"hidden": true
},
"tracedir": {
"type": "string",
"description": "Directory to keep pipeline Nextflow logs and reports.",
"default": "${params.outdir}/pipeline_info",
"fa_icon": "fas fa-cogs",
"hidden": true
}
}
},
"max_job_request_options": {
"title": "Max job request options",
"type": "object",
"fa_icon": "fab fa-acquisitions-incorporated",
"description": "Set the top limit for requested resources for any single job.",
"help_text": "If you are running on a smaller system, a pipeline step requesting more resources than are available may cause the Nextflow to stop the run with an error. These options allow you to cap the maximum resources requested by any single job so that the pipeline will run on your system.\n\nNote that you can not _increase_ the resources requested by any job using these options. For that you will need your own configuration file. See [the nf-core website](https://nf-co.re/usage/configuration) for details.",
"properties": {
"max_cpus": {
"type": "integer",
"description": "Maximum number of CPUs that can be requested for any single job.",
"default": 16,
"fa_icon": "fas fa-microchip",
"hidden": true,
"help_text": "Use to set an upper-limit for the CPU requirement for each process. Should be an integer e.g. `--max_cpus 1`"
},
"max_memory": {
"type": "string",
"description": "Maximum amount of memory that can be requested for any single job.",
"default": "128.GB",
"fa_icon": "fas fa-memory",
"hidden": true,
"help_text": "Use to set an upper-limit for the memory requirement for each process. Should be a string in the format integer-unit e.g. `--max_memory '8.GB'`"
},
"max_time": {
"type": "string",
"description": "Maximum amount of time that can be requested for any single job.",
"default": "240.h",
"fa_icon": "far fa-clock",
"hidden": true,
"help_text": "Use to set an upper-limit for the time requirement for each process. Should be a string in the format integer-unit e.g. `--max_time '2.h'`"
}
}
},
"institutional_config_options": {
"title": "Institutional config options",
"type": "object",
"fa_icon": "fas fa-university",
"description": "Parameters used to describe centralised config profiles. These should not be edited.",
"help_text": "The centralised nf-core configuration profiles use a handful of pipeline parameters to describe themselves. This information is then printed to the Nextflow log when you run a pipeline. You should not need to change these values when you run a pipeline.",
"properties": {
"custom_config_version": {
"type": "string",
"description": "Git commit id for Institutional configs.",
"default": "master",
"hidden": true,
"fa_icon": "fas fa-users-cog",
"help_text": "Provide git commit id for custom Institutional configs hosted at `nf-core/configs`. This was implemented for reproducibility purposes. Default: `master`.\n\n```bash\n## Download and use config file with following git commit id\n--custom_config_version d52db660777c4bf36546ddb188ec530c3ada1b96\n```"
},
"custom_config_base": {
"type": "string",
"description": "Base directory for Institutional configs.",
"default": "https://raw.githubusercontent.com/nf-core/configs/master",
"hidden": true,
"help_text": "If you're running offline, nextflow will not be able to fetch the institutional config files from the internet. If you don't need them, then this is not a problem. If you do need them, you should download the files from the repo and tell nextflow where to find them with the `custom_config_base` option. For example:\n\n```bash\n## Download and unzip the config files\ncd /path/to/my/configs\nwget https://github.com/nf-core/configs/archive/master.zip\nunzip master.zip\n\n## Run the pipeline\ncd /path/to/my/data\nnextflow run /path/to/pipeline/ --custom_config_base /path/to/my/configs/configs-master/\n```\n\n> Note that the nf-core/tools helper package has a `download` command to download all required pipeline files + singularity containers + institutional configs in one go for you, to make this process easier.",
"fa_icon": "fas fa-users-cog"
},
"hostnames": {
"type": "string",
"description": "Institutional configs hostname.",
"hidden": true,
"fa_icon": "fas fa-users-cog"
},
"config_profile_description": {
"type": "string",
"description": "Institutional config description.",
"hidden": true,
"fa_icon": "fas fa-users-cog"
},
"config_profile_contact": {
"type": "string",
"description": "Institutional config contact information.",
"hidden": true,
"fa_icon": "fas fa-users-cog"
},
"config_profile_url": {
"type": "string",
"description": "Institutional config URL link.",
"hidden": true,
"fa_icon": "fas fa-users-cog"
}
}
},
"reproducibility_options": {
"title": "Reproducibility options",
"type": "object",
"description": "Use these parameters to also enable reproducible results from the individual assembly and binning tools .",
"default": "",
"properties": {
"megahit_fix_cpu_1": {
"type": "boolean",
"description": "Fix number of CPUs for MEGAHIT to 1. Not increased with retries.",
"help_text": "MEGAHIT only generates reproducible results when run single-threaded. \n\nWhen using this parameter do not change the number of CPUs for the `megahit` process with a custom config file. This would result in an error.\n\nDefault: The number of CPUs is specified in the `base.config` file, and increased with each retry."
},
"spades_fix_cpus": {
"type": "integer",
"description": "Fix number of CPUs used by SPAdes. Not increased with retries.",
"help_text": "SPAdes is designed to be deterministic for a given number of threads. To generate reproducible results fix the number of CPUs using this parameter.\n\nWhen using this parameter do not change the number of CPUs for the `spades` process with a custom config file. This would result in an error.\n\nDefault: The number of CPUs is specified in the `base.config` file, and increased with each retry."
},
"spadeshybrid_fix_cpus": {
"type": "integer",
"description": "Fix number of CPUs used by SPAdes hybrid. Not increased with retries.",
"help_text": "SPAdes is designed to be deterministic for a given number of threads. To generate reproducible results fix the number of CPUs using this parameter.\n\nWhen using this parameter do not change the number of CPUs for the `spadeshybrid` process with a custom config file. This would result in an error.\n\nDefault: The number of CPUs is specified in the `base.config` file, and increased with each retry."
},
"metabat_rng_seed": {
"type": "integer",
"default": 1,
"description": "RNG seed for MetaBAT2.",
"help_text": "MetaBAT2 is run by default with a fixed seed within this pipeline, thus producing reproducible results. You can set it also to any other positive integer to ensure reproducibility. Set the parameter to 0 to use a random seed."
}
},
"help_text": ""
},
"quality_control_for_short_reads_options": {
"title": "Quality control for short reads options",
"type": "object",
"description": "",
"default": "",
"properties": {
"adapter_forward": {
"type": "string",
"default": "AGATCGGAAGAGCACACGTCTGAACTCCAGTCA",
"description": "Sequence of 3' adapter to remove in the forward reads."
},
"adapter_reverse": {
"type": "string",
"default": "AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGT",
"description": "Sequence of 3' adapter to remove in the reverse reads."
},
"mean_quality": {
"type": "integer",
"default": 15,
"description": "Mean qualified quality value for keeping read."
},
"trimming_quality": {
"type": "integer",
"default": 15,
"description": "Trimming quality value for the sliding window."
},
"host_genome": {
"type": "string",
"help_text": "This parameter is mutually exclusive with `--host_genome`. Host read removal is done with Bowtie2. \nBoth the iGenomes FASTA file as well as corresponding, already pre-built Bowtie 2 index files will be used.",
"description": "Name of iGenomes reference for host contamination removal."
},
"host_fasta": {
"type": "string",
"description": "Fasta reference file for host contamination removal.",
"help_text": "This parameter is mutually exclusive with `--host_fasta`. The reference can be masked. Host read removal is done with Bowtie2."
},
"host_removal_verysensitive": {
"type": "boolean",
"description": "Use the `--very-sensitive` instead of the`--sensitive`setting for Bowtie 2 to map reads against the host genome."
},
"host_removal_save_ids": {
"type": "boolean",
"description": "Save the read IDs of removed host reads."
},
"keep_phix": {
"type": "boolean",
"description": "Keep reads similar to the Illumina internal standard PhiX genome."
},
"phix_reference": {
"type": "string",
"default": "${baseDir}/assets/data/GCA_002596845.1_ASM259684v1_genomic.fna.gz",
"description": "Genome reference used to remove Illumina PhiX contaminant reads.",
"hidden": true
}
}
},
"quality_control_for_long_reads_options": {
"title": "Quality control for long reads options",
"type": "object",
"description": "",
"default": "",
"properties": {
"skip_adapter_trimming": {
"type": "boolean",
"description": "Skip removing adapter sequences from long reads."
},
"longreads_min_length": {
"type": "integer",
"default": 1000,
"description": "Discard any read which is shorter than this value."
},
"longreads_keep_percent": {
"type": "integer",
"default": 90,
"description": "Keep this percent of bases."
},
"longreads_length_weight": {
"type": "integer",
"default": 10,
"description": "The higher the more important is read length when choosing the best reads.",
"help_text": "The default value focuses on length instead of quality to improve assembly size.\nIn order to assign equal weights to read lengths and read qualities set this parameter to 1.\nThis might be useful, for example, to benefit indirectly from the removal of short host reads (causing lower qualities for reads not overlapping filtered short reads)."
},
"keep_lambda": {
"type": "boolean",
"description": "Keep reads similar to the ONT internal standard Escherichia virus Lambda genome."
},
"lambda_reference": {
"type": "string",
"default": "${baseDir}/assets/data/GCA_000840245.1_ViralProj14204_genomic.fna.gz",
"hidden": true,
"description": "Genome reference used to remove ONT Lambda contaminant reads."
}
}
},
"taxonomic_profiling_options": {
"title": "Taxonomic profiling options",
"type": "object",
"description": "Taxonomic classification is disabled by default. You have to specify one of the options below to activate it.",
"default": "",
"properties": {
"centrifuge_db": {
"type": "string",
"description": "Database for taxonomic binning with centrifuge.",
"help_text": "E.g. \"ftp://ftp.ccb.jhu.edu/pub/infphilo/centrifuge/data/p_compressed+h+v.tar.gz\"."
},
"kraken2_db": {
"type": "string",
"description": "Database for taxonomic binning with kraken2.",
"help_text": "E.g. \"ftp://ftp.ccb.jhu.edu/pub/data/kraken2_dbs/minikraken_8GB_202003.tgz\"."
},
"skip_krona": {
"type": "boolean",
"description": "Skip creating a krona plot for taxonomic binning."
},
"cat_db": {
"type": "string",
"description": "Database for taxonomic classification of metagenome assembled genomes.",
"help_text": "E.g. \"http://tbb.bio.uu.nl/bastiaan/CAT_prepare/CAT_prepare_20200304.tar.gz\".\nThe zipped file needs to contain a folder named \"*taxonomy*\" and \"*CAT_database*\" that hold the respective files."
}
}
},
"assembly_options": {
"title": "Assembly options",
"type": "object",
"description": "",
"default": "",
"properties": {
"coassemble_group": {
"type": "boolean",
"description": "Co-assemble samples within one group, instead of assembling each sample separately."
},
"spades_options": {
"type": "string",
"description": "Additional custom options for SPAdes.",
"help_text": "An example is adjusting k-mers (\"-k 21,33,55,77\") or adding [advanced options](https://github.com/ablab/spades#advanced-options). But not -t, -m, -o or --out-prefix, because these are already in use.",
"default": "\"\""
},
"megahit_options": {
"type": "string",
"default": "\"\"",
"description": "Additional custom options for MEGAHIT.",
"help_text": "An example is adjusting presets (e.g. \"--presets meta-large\"), k-mers (e.g. \"-k 21,33,55,77\") or adding other [advanced options](https://github.com/voutcn/megahit#advanced-usage). For example, increase the minimum k-mer in the event of an error message such as \"Too many vertices in the unitig graph, you may increase the kmer size to remove tons of erroneous kmers.\" in the MEGAHIT log file. But not --threads, --memory, -o or input read files, because these are already in use."
},
"skip_spades": {
"type": "boolean",
"description": "Skip Illumina-only SPAdes assembly."
},
"skip_spadeshybrid": {
"type": "boolean",
"description": "Skip SPAdes hybrid assembly."
},
"skip_megahit": {
"type": "boolean",
"description": "Skip MEGAHIT assembly."
},
"skip_quast": {
"type": "boolean",
"description": "Skip metaQUAST."
}
}
},
"binning_options": {
"title": "Binning options",
"type": "object",
"description": "",
"default": "",
"properties": {
"binning_map_mode": {
"type": "string",
"default": "group",
"description": "Defines mapping strategy to compute co-abundances for binning, i.e. which samples will be mapped against the assembly.",
"help_text": "Available: `all`, `group` or `own`. Note that `own` cannot be specified in combination with `--coassemble_group`.\n\nNote that specifying `all` without additionally specifying `--coassemble_group` results in `n^2` mapping processes for each assembly method, where `n` is the number of samples."
},
"skip_binning": {
"type": "boolean",
"description": "Skip metagenome binning."
},
"min_contig_size": {
"type": "integer",
"default": 1500,
"description": "Minimum contig size to be considered for binning and for bin quality check.",
"help_text": "For forwarding into downstream analysis, i.e. QUAST and BUSCO, and reporting."
},
"min_length_unbinned_contigs": {
"type": "integer",
"default": 1000000,
"description": "Minimal length of contigs that are not part of any bin but treated as individual genome.",
"help_text": "Contigs that do not fulfill the thresholds of `--min_length_unbinned_contigs` and `--max_unbinned_contigs` are pooled for downstream analysis and reporting, except contigs that also do not fullfill `--min_contig_size` are not considered further."
},
"max_unbinned_contigs": {
"type": "integer",
"default": 100,
"description": "Maximal number of contigs that are not part of any bin but treated as individual genome.",
"help_text": "Contigs that do not fulfill the thresholds of `--min_length_unbinned_contigs` and `--max_unbinned_contigs` are pooled for downstream analysis and reporting, except contigs that also do not fullfill `--min_contig_size` are not considered further."
}
}
},
"bin_quality_check_options": {
"title": "Bin quality check options",
"type": "object",
"description": "",
"default": "",
"properties": {
"skip_busco": {
"type": "boolean",
"description": "Disable bin QC with BUSCO."
},
"busco_reference": {
"type": "string",
"default": "https://busco-data.ezlab.org/v4/data/lineages/bacteria_odb10.2020-03-06.tar.gz",
"description": "Download path for BUSCO database.",
"help_text": "Available databases are listed here: https://busco.ezlab.org/."
},
"save_busco_reference": {
"type": "boolean",
"description": "Save BUSCO reference.",
"help_text": "Useful to allow reproducibility, as BUSCO datasets are frequently updated and old versions do not always remain accessible."
}
}
},
"deprecated": {
"title": "Deprecated",
"type": "object",
"description": "",
"default": "",
"properties": {
"manifest": {
"type": "string",
"hidden": true
}
}
}
},
"allOf": [
{
"$ref": "#/definitions/input_output_options"
},
{
"$ref": "#/definitions/reference_genome_options"
},
{
"$ref": "#/definitions/generic_options"
},
{
"$ref": "#/definitions/max_job_request_options"
},
{
"$ref": "#/definitions/institutional_config_options"
},
{
"$ref": "#/definitions/reproducibility_options"
},
{
"$ref": "#/definitions/quality_control_for_short_reads_options"
},
{
"$ref": "#/definitions/quality_control_for_long_reads_options"
},
{
"$ref": "#/definitions/taxonomic_profiling_options"
},
{
"$ref": "#/definitions/assembly_options"
},
{
"$ref": "#/definitions/binning_options"
},
{
"$ref": "#/definitions/bin_quality_check_options"
},
{
"$ref": "#/definitions/deprecated"
}
]
}