Skip to content

Commit

Permalink
[srst2_vibrio, merlin_magic] Removed instances of srst2_ from inputs (#…
Browse files Browse the repository at this point in the history
…726)

* Removed instances of srst2_ from inputs

* Update md5sum of wf_merlin_magic for wf_theiaprok_illumina_pe and se
  • Loading branch information
awh082834 authored Jan 16, 2025
1 parent da2c218 commit 2a8c304
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
20 changes: 10 additions & 10 deletions tasks/species_typing/vibrio/task_srst2_vibrio.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ task srst2_vibrio {
File read1
File? read2
String samplename
Int srst2_min_cov
Int srst2_max_divergence
Int srst2_min_depth
Int srst2_min_edge_depth
Int srst2_gene_max_mismatch
Int min_cov
Int max_divergence
Int min_depth
Int min_edge_depth
Int gene_max_mismatch
String docker = "us-docker.pkg.dev/general-theiagen/staphb/srst2:0.2.0-vcholerae"
Int disk_size = 100
Int cpu = 4
Expand All @@ -32,11 +32,11 @@ task srst2_vibrio {
${INPUT_READS} \
--gene_db /vibrio-cholerae-db/vibrio_230224.fasta \
--output ~{samplename} \
--min_coverage ~{srst2_min_cov} \
--max_divergence ~{srst2_max_divergence} \
--min_depth ~{srst2_min_depth} \
--min_edge_depth ~{srst2_min_edge_depth} \
--gene_max_mismatch ~{srst2_gene_max_mismatch}
--min_coverage ~{min_cov} \
--max_divergence ~{max_divergence} \
--min_depth ~{min_depth} \
--min_edge_depth ~{min_edge_depth} \
--gene_max_mismatch ~{gene_max_mismatch}

# capture output TSV
mv ~{samplename}__genes__*__results.txt ~{samplename}.tsv
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@
- path: miniwdl_run/wdl/workflows/theiaprok/wf_theiaprok_illumina_pe.wdl
md5sum: 9b8e2da62c8572a369c786a9bbc3a36e
- path: miniwdl_run/wdl/workflows/utilities/wf_merlin_magic.wdl
md5sum: 3c9c727d4a40ca936f58446103becb34
md5sum: 3547638e39dcf408234a6c1df57d198d
- path: miniwdl_run/wdl/workflows/utilities/wf_read_QC_trim_pe.wdl
contains: ["version", "QC", "output"]
- path: miniwdl_run/workflow.log
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@
- path: miniwdl_run/wdl/workflows/theiaprok/wf_theiaprok_illumina_se.wdl
md5sum: 02dc0075bf28d557d7b81aa2dc61feab
- path: miniwdl_run/wdl/workflows/utilities/wf_merlin_magic.wdl
md5sum: 3c9c727d4a40ca936f58446103becb34
md5sum: 3547638e39dcf408234a6c1df57d198d
- path: miniwdl_run/wdl/workflows/utilities/wf_read_QC_trim_se.wdl
md5sum: 09d9f68b9ca8bf94b6145ff9bed2edd1
- path: miniwdl_run/workflow.log
Expand Down
10 changes: 5 additions & 5 deletions workflows/utilities/wf_merlin_magic.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -610,11 +610,11 @@ workflow merlin_magic {
read1 = select_first([read1]),
read2 = read2,
samplename = samplename,
srst2_min_cov = srst2_min_cov,
srst2_max_divergence = srst2_max_divergence,
srst2_min_depth = srst2_min_depth,
srst2_min_edge_depth = srst2_min_edge_depth,
srst2_gene_max_mismatch = srst2_gene_max_mismatch,
min_cov = srst2_min_cov,
max_divergence = srst2_max_divergence,
min_depth = srst2_min_depth,
min_edge_depth = srst2_min_edge_depth,
gene_max_mismatch = srst2_gene_max_mismatch,
docker = srst2_docker_image
}
}
Expand Down

0 comments on commit 2a8c304

Please sign in to comment.