Skip to content
Snippets Groups Projects

Dockerize GATK. Scattering now works with containers. Tabix another docker image.

Merged Ruben Vorderman requested to merge BIOWDL-199 into develop
1 file
+ 5
1
Compare changes
  • Side-by-side
  • Inline
+ 5
1
@@ -248,9 +248,13 @@ task ScatterRegions {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "0.2--0"
String outputDirPath = "scatters"
}
# OutDirPath must be defined here because the glob process relies on
# linking. This path must be in the containers filesystem, otherwise the
# linking does not work.
String outputDirPath = "scatters"
command {
set -e -o pipefail
mkdir -p ~{outputDirPath}
Loading