Skip to content
Snippets Groups Projects
Unverified Commit 0ac16be7 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #103 from biowdl/small_fixes

small fixes
parents 72241b6d 6a0abb57
No related branches found
No related tags found
No related merge requests found
......@@ -83,7 +83,7 @@ task GetConfiguration {
}
runtime {
memory: 1
memory: 2 # 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