Skip to content

Commit

Permalink
Fix deeparg container version
Browse files Browse the repository at this point in the history
  • Loading branch information
fmaguire committed Jun 29, 2020
1 parent 189bae8 commit 8a3634b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ rule cleanup:
expand("results/{sample}/srax/Results/sraX_analysis.html", sample=samples.index),
expand("results/{sample}/sstar/report.tsv", sample=samples.index),
expand("results/{sample}/kmerresistance/results.KmerRes", sample=samples.index),
#expand("results/{sample}/deeparg/output.mapping.ARG", sample=samples.index),
expand("results/{sample}/deeparg/output.mapping.ARG", sample=samples.index),
#expand("results/{sample}/srst2/srst2__fullgenes__ResFinder__results.txt", sample=samples.index)
output:
"pipeline_finished.txt"
Expand All @@ -45,8 +45,8 @@ rule cleanup:
touch pipeline_finished.txt
"""

#include: "rules/deeparg.smk"
#include: "rules/srst2.smk"
include: "rules/deeparg.smk"
include: "rules/abricate.smk"
include: "rules/amrfinder.smk"
include: "rules/ariba.smk"
Expand Down
2 changes: 1 addition & 1 deletion rules/deeparg.smk
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rule run_deeparg:
report = "results/{sample}/deeparg/output.mapping.ARG",
report_potential = "results/{sample}/deeparg/output.mapping.potential.ARG"
singularity:
"docker://gaarangoa/deeparg:latest"
"docker://gaarangoa/deeparg:v1.0.1"
shell:
"""
python /deeparg/deepARG.py --align --type nucl --reads --input /data/results/{wildcards.sample}/deeparg/reads.fasta --output /data/results/{wildcards.sample}/deeparg/output
Expand Down

0 comments on commit 8a3634b

Please sign in to comment.