|
10 | 10 | "type": "object", |
11 | 11 | "fa_icon": "fas fa-terminal", |
12 | 12 | "description": "Define where the pipeline should find input data and save output data.", |
13 | | - "required": [ |
14 | | - "input", |
15 | | - "outdir" |
16 | | - ], |
| 13 | + "required": ["input", "outdir"], |
17 | 14 | "properties": { |
18 | 15 | "input": { |
19 | 16 | "type": "string", |
|
238 | 235 | "default": "trimgalore", |
239 | 236 | "description": "Specifies the trimming tool to use - available options are 'trimgalore' and 'fastp'.", |
240 | 237 | "fa_icon": "fas fa-cut", |
241 | | - "enum": [ |
242 | | - "trimgalore", |
243 | | - "fastp" |
244 | | - ] |
| 238 | + "enum": ["trimgalore", "fastp"] |
245 | 239 | }, |
246 | 240 | "extra_trimgalore_args": { |
247 | 241 | "type": "string", |
|
329 | 323 | "default": "umitools", |
330 | 324 | "description": "Specifies the tool to use for UMI deduplication - available options are 'umitools' and 'umicollapse'.", |
331 | 325 | "fa_icon": "fas fa-barcode", |
332 | | - "enum": [ |
333 | | - "umitools", |
334 | | - "umicollapse" |
335 | | - ] |
| 326 | + "enum": ["umitools", "umicollapse"] |
336 | 327 | }, |
337 | 328 | "umitools_extract_method": { |
338 | 329 | "type": "string", |
|
373 | 364 | "default": "directional", |
374 | 365 | "fa_icon": "far fa-object-ungroup", |
375 | 366 | "description": "Method to use to determine read groups by subsuming those with similar UMIs. All methods start by identifying the reads with the same mapping position, but treat similar yet nonidentical UMIs differently.", |
376 | | - "enum": [ |
377 | | - "unique", |
378 | | - "percentile", |
379 | | - "cluster", |
380 | | - "adjacency", |
381 | | - "directional" |
382 | | - ] |
| 367 | + "enum": ["unique", "percentile", "cluster", "adjacency", "directional"] |
383 | 368 | }, |
384 | 369 | "umitools_dedup_stats": { |
385 | 370 | "type": "boolean", |
|
401 | 386 | "default": "star_salmon", |
402 | 387 | "description": "Specifies the alignment algorithm to use - available options are 'star_salmon', 'star_rsem' and 'hisat2'.", |
403 | 388 | "fa_icon": "fas fa-map-signs", |
404 | | - "enum": [ |
405 | | - "star_salmon", |
406 | | - "star_rsem", |
407 | | - "hisat2" |
408 | | - ] |
| 389 | + "enum": ["star_salmon", "star_rsem", "hisat2"] |
409 | 390 | }, |
410 | 391 | "pseudo_aligner": { |
411 | 392 | "type": "string", |
412 | 393 | "description": "Specifies the pseudo aligner to use - available options are 'salmon'. Runs in addition to '--aligner'.", |
413 | 394 | "fa_icon": "fas fa-hamburger", |
414 | | - "enum": [ |
415 | | - "salmon", |
416 | | - "kallisto" |
417 | | - ] |
| 395 | + "enum": ["salmon", "kallisto"] |
418 | 396 | }, |
419 | 397 | "pseudo_aligner_kmer_size": { |
420 | 398 | "type": "integer", |
|
618 | 596 | "type": "string", |
619 | 597 | "description": "Tool to use for detecting contaminants in unaligned reads - available options are 'kraken2' and 'kraken2_bracken'", |
620 | 598 | "fa_icon": "fas fa-virus-slash", |
621 | | - "enum": [ |
622 | | - "kraken2", |
623 | | - "kraken2_bracken" |
624 | | - ] |
| 599 | + "enum": ["kraken2", "kraken2_bracken"] |
625 | 600 | }, |
626 | 601 | "kraken_db": { |
627 | 602 | "type": "string", |
|
636 | 611 | "fa_icon": "fas fa-tree", |
637 | 612 | "description": "Taxonomic level for Bracken abundance estimations.", |
638 | 613 | "help_text": "Use the first letter of taxonomic levels: Domain, Phylum, Class, Order, Family, Genus, or Species.", |
639 | | - "enum": [ |
640 | | - "D", |
641 | | - "P", |
642 | | - "C", |
643 | | - "O", |
644 | | - "F", |
645 | | - "G", |
646 | | - "S" |
647 | | - ] |
| 614 | + "enum": ["D", "P", "C", "O", "F", "G", "S"] |
648 | 615 | } |
649 | 616 | } |
650 | 617 | }, |
|
827 | 794 | "description": "Method used to save pipeline results to output directory.", |
828 | 795 | "help_text": "Controls how files are saved to the output directory through Nextflow's `publishDir` directive. See the [Nextflow documentation](https://www.nextflow.io/docs/latest/process.html#publishdir) for available options.", |
829 | 796 | "fa_icon": "fas fa-copy", |
830 | | - "enum": [ |
831 | | - "symlink", |
832 | | - "rellink", |
833 | | - "link", |
834 | | - "copy", |
835 | | - "copyNoFollow", |
836 | | - "move" |
837 | | - ], |
| 797 | + "enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"], |
838 | 798 | "hidden": true |
839 | 799 | }, |
840 | 800 | "email_on_fail": { |
|
0 commit comments