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

add tags to all samtools stuff

parent c8af9b5d
No related branches found
No related tags found
1 merge request!92Dockerize GATK. Scattering now works with containers. Tabix another docker image.
......@@ -7,6 +7,7 @@ task BgzipAndIndex {
File inputFile
String outputDir
String type = "vcf"
String dockerTag = "1.8--h46bd0b3_5"
}
String outputGz = outputDir + "/" + basename(inputFile) + ".gz"
......@@ -20,6 +21,10 @@ task BgzipAndIndex {
File compressed = outputGz
File index = outputGz + ".tbi"
}
runtime {
docker: "quay.io/biocontainers/samtools:" + dockerTag
}
}
task Index {
......@@ -185,6 +190,7 @@ task Tabix {
input {
String inputFile
String type = "vcf"
String dockerTag = "1.8--h46bd0b3_5"
}
command {
......@@ -194,6 +200,10 @@ task Tabix {
output {
File index = inputFile + ".tbi"
}
runtime {
docker: "quay.io/biocontainers/samtools:" + dockerTag
}
}
task View {
......
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