Skip to content
Snippets Groups Projects
Commit 23227f9a authored by Aurelien Brionne's avatar Aurelien Brionne
Browse files

update bamcoverage for samtools compatibility

parent 242da532
No related branches found
No related tags found
No related merge requests found
......@@ -19,9 +19,9 @@ process BAMCOVERAGE {
samtools \
depth \
${bamfiles} \
-o tmp
> tmp.txt
awk '{print \$3}' tmp | sort | uniq -c > "${replicateId}.bamdepth"
awk '{print \$3}' tmp.txt | sort | uniq -c > "${replicateId}.bamdepth"
"""
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment