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
72263369
Commit
72263369
authored
5 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Update runtime.
parent
fca3b3f0
No related branches found
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
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
ccs.wdl
+2
-0
2 additions, 0 deletions
ccs.wdl
isoseq3.wdl
+2
-0
2 additions, 0 deletions
isoseq3.wdl
lima.wdl
+2
-0
2 additions, 0 deletions
lima.wdl
with
7 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
72263369
...
...
@@ -10,6 +10,7 @@ that users understand how the changes affect the new version.
-->
version 3.1.0
---------------------------
+
Add time_minutes runtime to CCS, Lima & IsoSeq3.
+
Lima: Replace mv command with cp.
+
Default threads for BWA in bwa.Kit task: 4. Samtools sort in the
same task: 1. Output BAM compression level to 1.
...
...
This diff is collapsed.
Click to expand it.
ccs.wdl
+
2
−
0
View file @
72263369
...
...
@@ -34,6 +34,7 @@ task CCS {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/pbccs:4.2.0--0"
Int timeMinutes = ceil(size(subreadsFile, "G") * 240 / cores)
}
command {
...
...
@@ -64,6 +65,7 @@ task CCS {
cpu: cores
memory: memory
docker: dockerImage
time_minutes: timeMinutes
}
parameter_meta {
...
...
This diff is collapsed.
Click to expand it.
isoseq3.wdl
+
2
−
0
View file @
72263369
...
...
@@ -32,6 +32,7 @@ task Refine {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/isoseq3:3.3.0--0"
Int timeMinutes = ceil(size(inputBamFile, "G") * 240 / cores)
}
command <<<
...
...
@@ -77,6 +78,7 @@ task Refine {
cpu: cores
memory: memory
docker: dockerImage
time_minutes: timeMinutes
}
parameter_meta {
...
...
This diff is collapsed.
Click to expand it.
lima.wdl
+
2
−
0
View file @
72263369
...
...
@@ -51,6 +51,7 @@ task Lima {
Int cores = 4
String memory = "10G"
String dockerImage = "quay.io/biocontainers/lima:1.11.0--0"
Int timeMinutes = ceil(size(inputBamFile, "G") * 240 / cores)
}
Map[String, String] libraryDesignOptions = {"same": "--same", "different": "--different", "neighbors": "--neighbors"}
...
...
@@ -111,6 +112,7 @@ task Lima {
cpu: cores
memory: memory
docker: dockerImage
time_minutes: timeMinutes
}
parameter_meta {
...
...
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