Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tasks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
biowdl
tasks
Commits
eec5791c
Commit
eec5791c
authored
6 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
add docker containers to gatk
parent
fcfe3415
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!92
Dockerize GATK. Scattering now works with containers. Tabix another docker image.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gatk.wdl
+17
-1
17 additions, 1 deletion
gatk.wdl
with
17 additions
and
1 deletion
gatk.wdl
+
17
−
1
View file @
eec5791c
...
...
@@ -15,6 +15,7 @@ task ApplyBQSR {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "3.8--5"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -48,6 +49,7 @@ task ApplyBQSR {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -66,6 +68,7 @@ task BaseRecalibrator {
Reference reference
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "3.8--5"
}
Array[File]+ knownIndelsSitesVCFsArg = flatten([
...
...
@@ -95,6 +98,7 @@ task BaseRecalibrator {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -114,6 +118,7 @@ task CombineGVCFs {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "3.8--5"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -139,6 +144,7 @@ task CombineGVCFs {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -153,6 +159,7 @@ task GatherBqsrReports {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "3.8--5"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -173,6 +180,7 @@ task GatherBqsrReports {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -194,6 +202,7 @@ task GenotypeGVCFs {
Int memory = 6
Float memoryMultiplier = 2.0
String dockerTag = "3.8--5"
}
File dbsnpFile = if (defined(dbsnpVCF)) then select_first([dbsnpVCF]).file else ""
...
...
@@ -224,7 +233,8 @@ task GenotypeGVCFs {
}
}
runtime{
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -245,6 +255,7 @@ task HaplotypeCallerGvcf {
Int memory = 4
Float memoryMultiplier = 3
String dockerTag = "3.8--5"
}
File dbsnpFile = if (defined(dbsnpVCF)) then select_first([dbsnpVCF]).file else ""
...
...
@@ -275,6 +286,7 @@ task HaplotypeCallerGvcf {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -294,6 +306,7 @@ task MuTect2 {
String? gatkJar
Int memory = 4
Float memoryMultiplier = 3
String dockerTag = "3.8--5"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -321,6 +334,7 @@ task MuTect2 {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -337,6 +351,7 @@ task SplitNCigarReads {
Int memory = 4
Float memoryMultiplier = 4
String dockerTag = "3.8--5"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -362,6 +377,7 @@ task SplitNCigarReads {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment