Skip to content

Commit 0c1770a

Browse files
committed
add help_text for input_output_options
1 parent 5acab8e commit 0c1770a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

nextflow_schema.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,19 @@
1010
"type": "object",
1111
"fa_icon": "fas fa-terminal",
1212
"description": "Define where the pipeline should find input data and save output data.",
13+
"help_text": "Specify input samplesheet, step and output folder.",
1314
"required": ["step", "outdir"],
1415
"properties": {
16+
"input": {
17+
"type": "string",
18+
"format": "file-path",
19+
"mimetype": "text/csv",
20+
"pattern": "^\\S+\\.csv$",
21+
"schema": "assets/schema_input.json",
22+
"description": "Path to comma-separated file containing information about the samples in the experiment.",
23+
"help_text": "A design file with information about the samples in your experiment. Use this parameter to specify the location of the input files. It has to be a comma-separated file with a header row. See [usage docs](https://nf-co.re/sarek/usage#input).\n\nIf no input file is specified, sarek will attempt to locate one in the `{outdir}` directory.",
24+
"fa_icon": "fas fa-file-csv"
25+
},
1526
"step": {
1627
"type": "string",
1728
"default": "mapping",
@@ -27,24 +38,13 @@
2738
"annotate"
2839
]
2940
},
30-
"input": {
31-
"type": "string",
32-
"format": "file-path",
33-
"mimetype": "text/csv",
34-
"pattern": "^\\S+\\.csv$",
35-
"schema": "assets/schema_input.json",
36-
"description": "Path to comma-separated file containing information about the samples in the experiment.",
37-
"help_text": "A design file with information about the samples in your experiment. Use this parameter to specify the location of the input files. It has to be a comma-separated file with a header row. See [usage docs](https://nf-co.re/sarek/usage#input).\n\nIf no input file is specified, sarek will attempt to locate one in the `{outdir}` directory.",
38-
"fa_icon": "fas fa-file-csv"
39-
},
4041
"outdir": {
4142
"type": "string",
4243
"format": "directory-path",
4344
"description": "The output directory where the results will be saved. You have to use absolute paths to storage on Cloud infrastructure.",
4445
"fa_icon": "fas fa-folder-open"
4546
}
46-
},
47-
"help_text": ""
47+
}
4848
},
4949
"main_options": {
5050
"title": "Main options",

0 commit comments

Comments
 (0)