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
8479f908
Commit
8479f908
authored
6 years ago
by
Ruben Vorderman
Browse files
Options
Downloads
Patches
Plain Diff
fix gatk images
parent
14eae8b4
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
+12
-13
12 additions, 13 deletions
gatk.wdl
with
12 additions
and
13 deletions
gatk.wdl
+
12
−
13
View file @
8479f908
...
...
@@ -15,7 +15,7 @@ task ApplyBQSR {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -68,7 +68,7 @@ task BaseRecalibrator {
Reference reference
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
Array[File]+ knownIndelsSitesVCFsArg = flatten([
...
...
@@ -118,7 +118,7 @@ task CombineGVCFs {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -159,7 +159,7 @@ task GatherBqsrReports {
Int memory = 4
Float memoryMultiplier = 3.0
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -202,7 +202,7 @@ task GenotypeGVCFs {
Int memory = 6
Float memoryMultiplier = 2.0
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
File dbsnpFile = if (defined(dbsnpVCF)) then select_first([dbsnpVCF]).file else ""
...
...
@@ -255,7 +255,7 @@ task HaplotypeCallerGvcf {
Int memory = 4
Float memoryMultiplier = 3
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
File dbsnpFile = if (defined(dbsnpVCF)) then select_first([dbsnpVCF]).file else ""
...
...
@@ -267,8 +267,7 @@ task HaplotypeCallerGvcf {
command {
set -e -o pipefail
~{preCommand}
~{toolCommand} \
HaplotypeCaller \
gatk --java-options -Xmx~{memory}G HaplotypeCaller \
-R ~{reference.fasta} \
-O ~{gvcfPath} \
-I ~{sep=" -I " inputBams} \
...
...
@@ -286,7 +285,7 @@ task HaplotypeCallerGvcf {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
docker: "quay.io/biocontainers/gatk
4
:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -306,7 +305,7 @@ task MuTect2 {
String? gatkJar
Int memory = 4
Float memoryMultiplier = 3
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -334,7 +333,7 @@ task MuTect2 {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
docker: "quay.io/biocontainers/gatk
4
:" + dockerTag
memory: ceil(memory * memoryMultiplier)
}
}
...
...
@@ -351,7 +350,7 @@ task SplitNCigarReads {
Int memory = 4
Float memoryMultiplier = 4
String dockerTag = "
3.8
--
5
"
String dockerTag = "
4.1.0.0
--
0
"
}
String toolCommand = if defined(gatkJar)
...
...
@@ -377,7 +376,7 @@ task SplitNCigarReads {
}
runtime {
docker: "quay.io/biocontainers/gatk:" + dockerTag
docker: "quay.io/biocontainers/gatk
4
:" + 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