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
0862eab3
Commit
0862eab3
authored
3 years ago
by
Cats
Browse files
Options
Downloads
Patches
Plain Diff
memory and runtime adjustements
parent
f83b315e
Branches
BIOWDL-258
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
bcftools.wdl
+2
-2
2 additions, 2 deletions
bcftools.wdl
gridss.wdl
+2
-2
2 additions, 2 deletions
gridss.wdl
hmftools.wdl
+5
-5
5 additions, 5 deletions
hmftools.wdl
sambamba.wdl
+3
-3
3 additions, 3 deletions
sambamba.wdl
with
12 additions
and
12 deletions
bcftools.wdl
+
2
−
2
View file @
0862eab3
...
...
@@ -47,8 +47,8 @@ task Annotate {
File? samplesFile
Int threads = 0
String memory = "
256M
"
Int timeMinutes =
1
0 + ceil(size(inputFile, "G"))
String memory = "
5G
"
Int timeMinutes =
6
0 + ceil(size(inputFile, "G"))
String dockerImage = "quay.io/biocontainers/bcftools:1.10.2--h4f4756c_2"
}
...
...
This diff is collapsed.
Click to expand it.
gridss.wdl
+
2
−
2
View file @
0862eab3
...
...
@@ -36,7 +36,7 @@ task GRIDSS {
File? blacklistBed
File? repeatmaskerBed
Int jvmHeapSizeGb =
30
Int jvmHeapSizeGb =
64
Int threads = 4
Int timeMinutes = ceil(5760 / threads) + 10
String dockerImage = "quay.io/biocontainers/gridss:2.9.4--0"
...
...
@@ -70,7 +70,7 @@ task GRIDSS {
runtime {
cpu: threads
memory: "~{jvmHeapSizeGb +
1
}G"
memory: "~{jvmHeapSizeGb +
25
}G"
time_minutes: timeMinutes # !UnknownRuntimeKey
docker: dockerImage
}
...
...
This diff is collapsed.
Click to expand it.
hmftools.wdl
+
5
−
5
View file @
0862eab3
...
...
@@ -35,8 +35,8 @@ task Amber {
File referenceFastaDict
Int threads = 2
String memory = "
33
G"
String javaXmx = "
32
G"
String memory = "
52
G"
String javaXmx = "
50
G"
Int timeMinutes = 1200
String dockerImage = "quay.io/biocontainers/hmftools-amber:3.5--0"
}
...
...
@@ -341,7 +341,7 @@ task Linx {
File svVcf
File svVcfIndex
Array[File]+ purpleOutput
File referenceFasta
File referenceFasta
#FIXME Not used in pipeline5?
File referenceFastaFai
File referenceFastaDict
String refGenomeVersion
...
...
@@ -597,8 +597,8 @@ task Sage {
File? coverageBed
Int threads = 2
String javaXmx = "
32
G"
String memory = "
33
G"
String javaXmx = "
50
G"
String memory = "
75
G"
Int timeMinutes = 1 + ceil(size(select_all([tumorBam, normalBam]), "G") * 10 / threads) #FIXME make sure this is enough
String dockerImage = "quay.io/biocontainers/hmftools-sage:2.6--0"
}
...
...
This diff is collapsed.
Click to expand it.
sambamba.wdl
+
3
−
3
View file @
0862eab3
...
...
@@ -69,7 +69,7 @@ task Markdup {
String outputPath
Int compressionLevel = 1
# sortBufferSize and ioBufferSize taken from markdup defaults as of sambamba 0.7.1.
Int sortBufferSize =
2048
Int sortBufferSize =
4096
Int ioBufferSize = 128
Boolean removeDuplicates = false
...
...
@@ -81,8 +81,8 @@ task Markdup {
# 2 threads reduces wall clock time by more than 40%.
Int threads = 2
# According to the manual sambamba markdup uses the sortbufferSize + 2 times the ioBuffer size.
# Added
2024
mb as a margin of safety. Real life use with this setting uses 2.7 GiB.
Int memoryMb =
2048
+ sortBufferSize + 2 * ioBufferSize
# Added
4096
mb as a margin of safety. Real life use with this setting uses 2.7 GiB.
Int memoryMb =
4096
+ sortBufferSize + 2 * ioBufferSize
# Time minute calculation does not work well for higher number of threads.
Int timeMinutes = 1 + ceil(size(inputBams, "G") * 40) / threads
String dockerImage = "quay.io/biocontainers/sambamba:0.7.1--h148d290_2"
...
...
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