Skip to content
Snippets Groups Projects
Commit 7a9d3cd4 authored by Ruben Vorderman's avatar Ruben Vorderman
Browse files

hisat should deliver an indexed bam

parent f4ed41c4
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,9 @@ task Hisat2 {
String dockerImage = "quay.io/biocontainers/mulled-v2-a97e90b3b802d1da3d6958e0867610c718cb5eb1:2388ff67fc407dad75774291ca5038f40cac4be0-0"
}
# Select_first is needed, otherwise womtool validate fails.
String bamIndexPath = sub(select_first([outputBam]), "\.bam$", ".bai")
command {
set -e -o pipefail
mkdir -p $(dirname ~{outputBam})
......@@ -34,10 +37,12 @@ task Hisat2 {
--rg 'PL:~{platform}' \
~{true="--dta" false="" downstreamTranscriptomeAssembly} \
| samtools sort > ~{outputBam}
samtools index ~{outputBam} ~{bamIndexPath}
}
output {
File bamFile = outputBam
File bamIndex = bamIndexPath
}
runtime {
......
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