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
99b1586c
Commit
99b1586c
authored
5 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
time_minutes
parent
2c9810f1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
gatk.wdl
+19
-9
19 additions, 9 deletions
gatk.wdl
picard.wdl
+5
-2
5 additions, 2 deletions
picard.wdl
umi-tools.wdl
+1
-0
1 addition, 0 deletions
umi-tools.wdl
with
25 additions
and
11 deletions
gatk.wdl
+
19
−
9
View file @
99b1586c
...
...
@@ -92,7 +92,7 @@ task ApplyBQSR {
String memory = "5G"
String javaXmx = "4G"
Int timeMinutes = 120 # This will likely be used with intervals, as such size based estimation can be used.
Int timeMinutes = 120 # This will likely be used with intervals, as such size based estimation can
't
be used.
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
...
...
@@ -122,6 +122,7 @@ task ApplyBQSR {
runtime {
docker: dockerImage
time_minutes: timeMinutes
memory: memory
}
...
...
@@ -163,7 +164,7 @@ task BaseRecalibrator {
String memory = "5G"
String javaXmx = "4G"
Int timeMinutes = 120 # This will likely be used with intervals, as such size based estimation can be used.
Int timeMinutes = 120 # This will likely be used with intervals, as such size based estimation can
't
be used.
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
...
...
@@ -413,15 +414,16 @@ task CombineGVCFs {
File referenceFastaDict
File referenceFastaFai
String memory = "24G"
String javaXmx = "12G"
String memory = "5G"
String javaXmx = "4G"
Int timeMinutes = ceil(size(gvcfFiles, "G") * 8)
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} \
gatk --java-options -Xmx~{javaXmx}
-XX:ParallelGCThreads=1
\
CombineGVCFs \
-R ~{referenceFasta} \
-O ~{outputPath} \
...
...
@@ -436,6 +438,7 @@ task CombineGVCFs {
runtime {
docker: dockerImage
time_minutes: timeMinutes
memory: memory
}
...
...
@@ -453,6 +456,7 @@ task CombineGVCFs {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
...
...
@@ -795,15 +799,16 @@ task GenotypeGVCFs {
File? dbsnpVCFIndex
File? pedigree
String memory = "
18
G"
String memory = "
7
G"
String javaXmx = "6G"
Int timeMinutes = 120 # This will likely be used with intervals, as such size based estimation can't be used.
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} \
gatk --java-options -Xmx~{javaXmx}
-XX:ParallelGCThreads=1
\
GenotypeGVCFs \
-R ~{referenceFasta} \
-O ~{outputPath} \
...
...
@@ -823,6 +828,7 @@ task GenotypeGVCFs {
runtime {
docker: dockerImage
time_minutes: timeMinutes
memory: memory
}
...
...
@@ -843,6 +849,7 @@ task GenotypeGVCFs {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
...
...
@@ -919,15 +926,16 @@ task HaplotypeCaller {
Boolean gvcf = false
String emitRefConfidence = if gvcf then "GVCF" else "NONE"
String memory = "
12
G"
String memory = "
5
G"
String javaXmx = "4G"
Int timeMinutes = 400 # This will likely be used with intervals, as such size based estimation can't be used.
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
command {
set -e
mkdir -p "$(dirname ~{outputPath})"
gatk --java-options -Xmx~{javaXmx} \
gatk --java-options -Xmx~{javaXmx}
-XX:ParallelGCThreads=1
\
HaplotypeCaller \
-R ~{referenceFasta} \
-O ~{outputPath} \
...
...
@@ -949,6 +957,7 @@ task HaplotypeCaller {
runtime {
docker: dockerImage
time_minutes: timeMinutes
memory: memory
}
...
...
@@ -976,6 +985,7 @@ task HaplotypeCaller {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
...
...
This diff is collapsed.
Click to expand it.
picard.wdl
+
5
−
2
View file @
99b1586c
...
...
@@ -489,8 +489,9 @@ task MergeVCFs {
Array[File]+ inputVCFsIndexes
String outputVcfPath
String memory = "24G"
String javaXmx = "8G"
String memory = "5G"
String javaXmx = "4G"
Int timeMinutes = size(inputVCFs, "G")
String dockerImage = "quay.io/biocontainers/picard:2.20.5--0"
}
...
...
@@ -513,6 +514,7 @@ task MergeVCFs {
runtime {
docker: dockerImage
time_minutes: timeMinutes
memory: memory
}
...
...
@@ -525,6 +527,7 @@ task MergeVCFs {
memory: {description: "The amount of memory this job will use.", category: "advanced"}
javaXmx: {description: "The maximum memory available to the program. Should be lower than `memory` to accommodate JVM overhead.",
category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
...
...
This diff is collapsed.
Click to expand it.
umi-tools.wdl
+
1
−
0
View file @
99b1586c
...
...
@@ -118,6 +118,7 @@ task Dedup {
umiSeparator: {description: "Seperator used for UMIs in the read names.", category: "advanced"}
paired: {description: "Whether or not the data is paired.", category: "common"}
memory: {description: "The amount of memory required for the task.", category: "advanced"}
timeMinutes: {description: "The maximum amount of time the job will run in minutes.", category: "advanced"}
dockerImage: {description: "The docker image used for this task. Changing this may result in errors which the developers may choose not to address.",
category: "advanced"}
}
...
...
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