Skip to content

Commit

Permalink
remove echo statement
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlibuit committed Mar 5, 2021
1 parent 81a8dd8 commit 0a4cd05
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tasks/task_ont_medaka.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ task consensus {
count_pool_2=$(samtools view ~{samplename}.primertrimmed.nCoV-2019_2.sorted.bam | wc -l)
count_total=$(( $count_pool_1 + $count_pool_2 ))

echo Python stuffs:
python -c "print ( round(($count_pool_1 / $count_total ) * 100, 2) )" | tee POOL1_PERCENT
python -c "print ( round(($count_pool_2 / $count_total ) * 100, 2) )" | tee POOL2_PERCENT

Expand Down

0 comments on commit 0a4cd05

Please sign in to comment.