Skip to content

Commit

Permalink
Add preemptible, shorter version string (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
aofarrel authored Sep 14, 2023
1 parent 2f9e80a commit 5227d77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion tasks/species_typing/task_tbp_parser.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ task tbp_parser {
cpu: cpu
disks: "local-disk " + disk_size + " SSD"
disk: disk_size + " GB"
maxRetries: 3
maxRetries: 3
preemptible: 1
}
}
5 changes: 3 additions & 2 deletions tasks/species_typing/task_tbprofiler.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ task tbprofiler {
date | tee DATE

# Print and save version
tb-profiler version > VERSION && sed -i -e 's/^/TBProfiler version /' VERSION
tb-profiler version > VERSION && sed -i -e 's/TBProfiler version //' VERSION && sed -n -i '$p' VERSION

if [ -z "~{read2}" ] ; then
INPUT_READS="-1 ~{read1}"
Expand Down Expand Up @@ -119,6 +119,7 @@ task tbprofiler {
cpu: cpu
disks: "local-disk " + disk_size + " SSD"
disk: disk_size + " GB"
maxRetries: 3
maxRetries: 3
preemptible: 1
}
}

0 comments on commit 5227d77

Please sign in to comment.