Skip to content
Snippets Groups Projects
Commit 44aeaf02 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added markdup step

parent b9ab2f02
No related branches found
No related tags found
No related merge requests found
......@@ -21,4 +21,30 @@ task Merge {
output {
File outputBam = outputBamPath
}
}
\ No newline at end of file
}
task Markdup {
File inputBam
String outputBamPath
command {
samtools markdup ${inputBam} ${outputBamPath}
}
output {
File outputBam = outputBamPath
}
}
task Flagstat {
File inputBam
String outputPath
command {
samtools flagstat ${inputBam} > ${outputPath}
}
output {
File flagstat = outputPath
}
}
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