Hello team,
Thank you for your great software!
While running some drug resistance prediction analysis I noticed that "bedaquiline" "clofazimine" are not listed in the results csv file. Is there a reason for that and do I need to use a specific flag for those?
Here is my rule for your kind reference!
rule run_mykrobe:
input:
r1=output_base + "reads/{isolate}_R1_001.fastq.gz",
r2=output_base + "reads/{isolate}_R2_001.fastq.gz"
output:
output_base + "{run}/{isolate}/mykrobe.csv"
conda:
"mykrobe"
shell:
"""
mykrobe predict -S tb -s sample -i {input.r1} {input.r2} -o {output}
"""
Hello team,
Thank you for your great software!
While running some drug resistance prediction analysis I noticed that "bedaquiline" "clofazimine" are not listed in the results csv file. Is there a reason for that and do I need to use a specific flag for those?
Here is my rule for your kind reference!