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
f7f65018
Unverified
Commit
f7f65018
authored
2 years ago
by
Cats
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #304 from biowdl/performance
Performance changes for WGSinCancerDiagnostics
parents
750fb263
e43bf3e4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+16
-0
16 additions, 0 deletions
CHANGELOG.md
bedtools.wdl
+1
-1
1 addition, 1 deletion
bedtools.wdl
gridss.wdl
+5
-5
5 additions, 5 deletions
gridss.wdl
hmftools.wdl
+6
-6
6 additions, 6 deletions
hmftools.wdl
sambamba.wdl
+1
-1
1 addition, 1 deletion
sambamba.wdl
with
29 additions
and
13 deletions
CHANGELOG.md
+
16
−
0
View file @
f7f65018
...
...
@@ -9,6 +9,22 @@ that users understand how the changes affect the new version.
-->
version 5.1.0-dev
---------------------------
+
Bedtools coverage's timeMinutes now defaults to
`320`
.
+
Gridss' runtime attribute defaults were changed to:
+
jvmHeapSizeGb:
`64`
+
nonJvmMemoryGb:
`10`
+
threads:
`12`
+
Virusbreakend's runtime attribute defaults were changed to:
+
threads:
`12`
+
timeMinutes:
`320`
+
Cobalt's timeMinutes now defaults to
`480`
.
+
Orange's timeMinutes now defaults to 10.
+
Sage's runtime attributes were changed to:
+
threads:
`32`
+
javaXmx:
`"16G"`
+
memory:
`"20G"`
+
timeMinutes:
`720`
+
Sambamba's runtimeMinutes nor defaults to
`320`
.
+
Added a task for CupGenerateReport.
+
Updated Cuppa to version 1.6.
+
Added a task for Gripss.
...
...
This diff is collapsed.
Click to expand it.
bedtools.wdl
+
1
−
1
View file @
f7f65018
...
...
@@ -76,7 +76,7 @@ task Coverage {
String outputPath = "./coverage.tsv"
String memory = "8G"
Int timeMinutes =
1
20
Int timeMinutes =
3
20
String dockerImage = "quay.io/biocontainers/bedtools:2.30.0--h7d7f7ad_2"
}
...
...
This diff is collapsed.
Click to expand it.
gridss.wdl
+
5
−
5
View file @
f7f65018
...
...
@@ -161,9 +161,9 @@ task GRIDSS {
File? blacklistBed
File? gridssProperties
Int jvmHeapSizeGb =
300
Int nonJvmMemoryGb =
5
0
Int threads =
4
Int jvmHeapSizeGb =
64
Int nonJvmMemoryGb =
1
0
Int threads =
12
Int timeMinutes = ceil(7200 / threads) + 1800
String dockerImage = "quay.io/biowdl/gridss:2.12.2"
}
...
...
@@ -290,9 +290,9 @@ task Virusbreakend {
String outputPath = "./virusbreakend.vcf"
String memory = "75G"
Int threads =
8
Int threads =
12
String dockerImage = "quay.io/biowdl/gridss:2.12.2"
Int timeMinutes =
18
0
Int timeMinutes =
32
0
}
command {
...
...
This diff is collapsed.
Click to expand it.
hmftools.wdl
+
6
−
6
View file @
f7f65018
...
...
@@ -114,7 +114,7 @@ task Cobalt {
Int threads = 1
String memory = "5G"
String javaXmx = "4G"
Int timeMinutes =
2
40
Int timeMinutes = 4
8
0
String dockerImage = "quay.io/biocontainers/hmftools-cobalt:1.11--0"
}
...
...
@@ -780,7 +780,7 @@ task Orange {
String memory = "17G"
String javaXmx = "16G"
Int timeMinutes = 1
440 #FIXME
Int timeMinutes = 1
0
String dockerImage = "quay.io/biowdl/orange:v1.6"
}
...
...
@@ -1225,10 +1225,10 @@ task Sage {
String? mnvFilterEnabled
File? coverageBed
Int threads =
4
String javaXmx = "
50
G"
String memory = "
51
G"
Int timeMinutes =
1 + ceil(size(select_all([tumorBam, referenceBam]), "G") * 9 / threads)
Int threads =
32
String javaXmx = "
16
G"
String memory = "
20
G"
Int timeMinutes =
720
String dockerImage = "quay.io/biocontainers/hmftools-sage:2.8--hdfd78af_1"
}
...
...
This diff is collapsed.
Click to expand it.
sambamba.wdl
+
1
−
1
View file @
f7f65018
...
...
@@ -28,7 +28,7 @@ task Flagstat {
Int threads = 2
String memory = "8G"
Int timeMinutes =
1
20
Int timeMinutes =
3
20
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