mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-13 06:43:09 +00:00
Fix type to boolean for flags
This commit is contained in:
parent
4b2a3789cd
commit
17039ebc6b
1 changed files with 6 additions and 10 deletions
|
@ -431,27 +431,23 @@
|
|||
},
|
||||
"longread_hostremoval_index": {
|
||||
"type": "string",
|
||||
"default": null
|
||||
"default": "None"
|
||||
},
|
||||
"save_minimap2_hostremoval_index": {
|
||||
"type": "string",
|
||||
"default": "false",
|
||||
"type": "boolean",
|
||||
"description": "Flag for publishing minimap2 host removal index"
|
||||
},
|
||||
"save_minimap2_hostremoval_mapped": {
|
||||
"type": "string",
|
||||
"default": "false",
|
||||
"type": "boolean",
|
||||
"description": "Flag for publishinig bam file with all long reads mapped to a reference"
|
||||
},
|
||||
"save_samtools_unmapped_bam": {
|
||||
"type": "string",
|
||||
"default": "false",
|
||||
"type": "boolean",
|
||||
"description": "Flag for publishing bam for reads that did not map to the host reference"
|
||||
},
|
||||
"save_minimap2_unmapped_fq": {
|
||||
"type": "string",
|
||||
"default": "false",
|
||||
"type": "boolean",
|
||||
"description": "Flag for publishing fastq files for reads that did not map to the host reference"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue