Skip to content

Commit

Permalink
Fixes for parameters descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ksenia Krasheninnikova committed Sep 8, 2023
1 parent dfd215f commit 943242f
Showing 1 changed file with 17 additions and 15 deletions.
32 changes: 17 additions & 15 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"mimetype": "text/yaml",
"pattern": "^\\S+\\.yaml$",
"schema": "assets/schema_input.json",
"description": "Path to comma-separated file containing information about the samples in the experiment.",
"description": "Path to YAML file containing information about the dataset",
"help_text": "You will need to create a design file with information about the samples in your experiment before running the pipeline. Use this parameter to specify its location. It has to be a comma-separated file with 3 columns, and a header row.",
"fa_icon": "fas fa-file-yaml"
},
Expand All @@ -35,33 +35,35 @@
"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})$"
},
"multiqc_title": {
"type": "string",
"description": "MultiQC report title. Printed as page header, used for filename if not otherwise specified.",
"fa_icon": "fas fa-file-signature"
},
"hifiasm_hic_on": {
"type": "boolean"
"type": "boolean",
"description": "Switch on HiC mode for hifiasm assembly"
},
"polishing_on": {
"type": "boolean"
"type": "boolean",
"description": "Switch on to do polish purged assembly before scaffolding"
},
"bed_chunks_polishing": {
"type": "integer",
"default": 10
"default": 10,
"description": "Number of chunks to split fasta for polishing"
},
"cool_bin": {
"type": "integer",
"default": 1000
"default": 1000,
"description": "Number of bins for cooler cload"
},
"hifiasmhic": {
"type": "string"
"timestamp": {
"type": "string",
"hidden": true
},
"hifiasm": {
"type": "string"
"type": "string",
"hidden": true
},
"timestamp": {
"type": "string"
"hifiasmhic": {
"type": "string",
"hidden": true
}
}
},
Expand Down

0 comments on commit 943242f

Please sign in to comment.