|
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": ["outdir"], |
| 13 | + "required": [ |
| 14 | + "outdir" |
| 15 | + ], |
14 | 16 | "properties": { |
15 | 17 | "input": { |
16 | 18 | "type": "string", |
|
37 | 39 | "type": "integer", |
38 | 40 | "description": "Read length used to calculate MACS2 genome size for peak calling if `--macs_gsize` isn't provided.", |
39 | 41 | "fa_icon": "fas fa-chart-area", |
40 | | - "enum": [50, 75, 100, 150, 200] |
| 42 | + "enum": [ |
| 43 | + 50, |
| 44 | + 75, |
| 45 | + 100, |
| 46 | + 150, |
| 47 | + 200 |
| 48 | + ] |
41 | 49 | }, |
42 | 50 | "outdir": { |
43 | 51 | "type": "string", |
|
221 | 229 | "default": "bwa", |
222 | 230 | "description": "Specifies the alignment algorithm to use - available options are 'bwa', 'bowtie2' and 'star'.", |
223 | 231 | "fa_icon": "fas fa-map-signs", |
224 | | - "enum": ["bwa", "bowtie2", "chromap", "star"] |
| 232 | + "enum": [ |
| 233 | + "bwa", |
| 234 | + "bowtie2", |
| 235 | + "chromap", |
| 236 | + "star" |
| 237 | + ] |
225 | 238 | }, |
226 | 239 | "keep_dups": { |
227 | 240 | "type": "boolean", |
|
348 | 361 | "type": "boolean", |
349 | 362 | "description": "Use vst transformation instead of rlog with DESeq2.", |
350 | 363 | "help_text": "See [DESeq2 docs](http://bioconductor.org/packages/devel/bioc/vignettes/DESeq2/inst/doc/DESeq2.html#data-transformations-and-visualization).", |
351 | | - "fa_icon": "fas fa-dolly" |
| 364 | + "fa_icon": "fas fa-dolly", |
| 365 | + "default": true |
352 | 366 | }, |
353 | 367 | "skip_plot_profile": { |
354 | 368 | "type": "boolean", |
|
489 | 503 | "description": "Method used to save pipeline results to output directory.", |
490 | 504 | "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.", |
491 | 505 | "fa_icon": "fas fa-copy", |
492 | | - "enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"], |
| 506 | + "enum": [ |
| 507 | + "symlink", |
| 508 | + "rellink", |
| 509 | + "link", |
| 510 | + "copy", |
| 511 | + "copyNoFollow", |
| 512 | + "move" |
| 513 | + ], |
493 | 514 | "hidden": true |
494 | 515 | }, |
495 | 516 | "fingerprint_bins": { |
|
0 commit comments