Skip to content
Snippets Groups Projects
Commit 4687394a authored by Cats's avatar Cats
Browse files

small fixes

parent 72241b6d
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ task GetConfiguration {
}
runtime {
memory: 1
memory: 4 # Needs more than 1 to pull the docker image
docker: "quay.io/biocontainers/fastqc:" + dockerTag
}
}
......@@ -57,12 +57,13 @@ task Merge {
input {
Array[File]+ bamFiles
String outputBamPath
Boolean force = true
String dockerTag = "1.8--h46bd0b3_5"
}
command {
samtools merge ~{outputBamPath} ~{sep=' ' bamFiles}
samtools merge ~{true="-f" false="" force} ~{outputBamPath} ~{sep=' ' bamFiles}
}
output {
......
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