mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 18:29:55 +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,26 +431,22 @@
|
||||||
},
|
},
|
||||||
"longread_hostremoval_index": {
|
"longread_hostremoval_index": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"default": null
|
"default": "None"
|
||||||
},
|
},
|
||||||
"save_minimap2_hostremoval_index": {
|
"save_minimap2_hostremoval_index": {
|
||||||
"type": "string",
|
"type": "boolean",
|
||||||
"default": "false",
|
|
||||||
"description": "Flag for publishing minimap2 host removal index"
|
"description": "Flag for publishing minimap2 host removal index"
|
||||||
},
|
},
|
||||||
"save_minimap2_hostremoval_mapped": {
|
"save_minimap2_hostremoval_mapped": {
|
||||||
"type": "string",
|
"type": "boolean",
|
||||||
"default": "false",
|
|
||||||
"description": "Flag for publishinig bam file with all long reads mapped to a reference"
|
"description": "Flag for publishinig bam file with all long reads mapped to a reference"
|
||||||
},
|
},
|
||||||
"save_samtools_unmapped_bam": {
|
"save_samtools_unmapped_bam": {
|
||||||
"type": "string",
|
"type": "boolean",
|
||||||
"default": "false",
|
|
||||||
"description": "Flag for publishing bam for reads that did not map to the host reference"
|
"description": "Flag for publishing bam for reads that did not map to the host reference"
|
||||||
},
|
},
|
||||||
"save_minimap2_unmapped_fq": {
|
"save_minimap2_unmapped_fq": {
|
||||||
"type": "string",
|
"type": "boolean",
|
||||||
"default": "false",
|
|
||||||
"description": "Flag for publishing fastq files for reads that did not map to the host reference"
|
"description": "Flag for publishing fastq files for reads that did not map to the host reference"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue