|
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": ["input", "sample", "outdir", "map_order"], |
| 13 | + "required": [ |
| 14 | + "input", |
| 15 | + "sample", |
| 16 | + "outdir", |
| 17 | + "map_order" |
| 18 | + ], |
14 | 19 | "properties": { |
15 | 20 | "input": { |
16 | 21 | "type": "string", |
|
50 | 55 | "description": "Type of longread data", |
51 | 56 | "help_text": "Choose between {'hifi', 'clr', 'ont', 'illumina'}", |
52 | 57 | "fa_icon": "fas fa-file-signature", |
53 | | - "enum": ["hifi", "clr", "ont", "illumina"] |
| 58 | + "enum": [ |
| 59 | + "hifi", |
| 60 | + "clr", |
| 61 | + "ont", |
| 62 | + "illumina" |
| 63 | + ] |
54 | 64 | }, |
55 | 65 | "cram": { |
56 | 66 | "type": "array", |
|
75 | 85 | "description": "HiC map scaffold order. Default to unsorted", |
76 | 86 | "help_text": "How you want to display your hic map, sorted by length?", |
77 | 87 | "fa_icon": "fas fa-file-signature", |
78 | | - "enum": ["length", "unsorted"] |
| 88 | + "enum": [ |
| 89 | + "length", |
| 90 | + "unsorted" |
| 91 | + ] |
79 | 92 | }, |
80 | 93 | "aligner": { |
81 | 94 | "type": "string", |
82 | 95 | "description": "Aligner for use {minimap2, bwamem2} in generating map", |
83 | 96 | "help_text": "Pick between {minimap2, bwamem2, AUTO}. Defaults to 'minimap2'", |
84 | 97 | "fa_icon": "fas fa-file-signature", |
85 | | - "enum": ["bwamem2", "minimap2", "AUTO"] |
| 98 | + "enum": [ |
| 99 | + "bwamem2", |
| 100 | + "minimap2", |
| 101 | + "AUTO" |
| 102 | + ] |
86 | 103 | }, |
87 | 104 | "run_hires": { |
88 | 105 | "type": "boolean", |
|
95 | 112 | "description": "Run Ultra resolution pretext maps", |
96 | 113 | "help_text": "Switch for Ultra resolution pretextmap generation", |
97 | 114 | "fa_icon": "fas fa-check", |
98 | | - "enum": ["yes", "no", "force"] |
| 115 | + "enum": [ |
| 116 | + "yes", |
| 117 | + "no", |
| 118 | + "force" |
| 119 | + ] |
99 | 120 | }, |
100 | 121 | "cram_chunk_size": { |
101 | 122 | "type": "integer", |
|
113 | 134 | "exists": true, |
114 | 135 | "pattern": ".*\\.bam$" |
115 | 136 | }, |
| 137 | + "snapshot_order": { |
| 138 | + "type": "string", |
| 139 | + "format": "file-path", |
| 140 | + "description": "Order of scaffolds in the png", |
| 141 | + "help_text": "Order of scaffolds in the pretext snapshotpng", |
| 142 | + "fa_icon": "fas fa-sort" |
| 143 | + }, |
116 | 144 | "outdir": { |
117 | 145 | "type": "string", |
118 | 146 | "format": "directory-path", |
|
216 | 244 | "description": "Method used to save pipeline results to output directory.", |
217 | 245 | "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.", |
218 | 246 | "fa_icon": "fas fa-copy", |
219 | | - "enum": ["symlink", "rellink", "link", "copy", "copyNoFollow", "move"], |
| 247 | + "enum": [ |
| 248 | + "symlink", |
| 249 | + "rellink", |
| 250 | + "link", |
| 251 | + "copy", |
| 252 | + "copyNoFollow", |
| 253 | + "move" |
| 254 | + ], |
220 | 255 | "hidden": true |
221 | 256 | }, |
222 | 257 | "email_on_fail": { |
|
273 | 308 | "hidden": true |
274 | 309 | }, |
275 | 310 | "help": { |
276 | | - "type": ["boolean", "string"], |
| 311 | + "type": [ |
| 312 | + "boolean", |
| 313 | + "string" |
| 314 | + ], |
277 | 315 | "description": "Display the help message." |
278 | 316 | }, |
279 | 317 | "help_full": { |
|
0 commit comments