Skip to content

Commit

Permalink
samtools version and dorado outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
fraser-combe committed Nov 15, 2024
1 parent 5d3b91f commit 1bc7bb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tasks/basecalling/task_dorado_demux.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ task dorado_demux {
set -euo pipefail

# Capture Dorado version
dorado --version | tee DORADO_VERSION
dorado --version 2>&1 | tee DORADO_VERSION
echo "Dorado version:" $(cat DORADO_VERSION)

# Output the Dorado model used
Expand Down
2 changes: 1 addition & 1 deletion tasks/basecalling/task_samtools_convert.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ task samtools_convert {
set -euo pipefail

# samtools version
samtools --version | tee SAMTOOLS_VERSION
samtools --version | head -n1 | tee VERSION

bam_output="output/bam/"
mkdir -p "$bam_output"
Expand Down

0 comments on commit 1bc7bb0

Please sign in to comment.