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
3d73a28b
Commit
3d73a28b
authored
5 years ago
by
JasperBoom
Browse files
Options
Downloads
Patches
Plain Diff
Add baseline value.
parent
56030a53
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
-1
1 addition, 1 deletion
CHANGELOG.md
ccs.wdl
+1
-1
1 addition, 1 deletion
ccs.wdl
isoseq3.wdl
+1
-1
1 addition, 1 deletion
isoseq3.wdl
lima.wdl
+1
-1
1 addition, 1 deletion
lima.wdl
with
4 additions
and
4 deletions
CHANGELOG.md
+
1
−
1
View file @
3d73a28b
...
...
@@ -10,7 +10,7 @@ that users understand how the changes affect the new version.
-->
version 3.1.0
---------------------------
+
Add time_minutes runtime
t
o CCS, Lima & IsoSeq3.
+
Add time_minutes
in
runtime o
f
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
+
1
−
1
View file @
3d73a28b
...
...
@@ -34,7 +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)
Int timeMinutes =
1 +
ceil(size(subreadsFile, "G") * 240 / cores)
}
command {
...
...
This diff is collapsed.
Click to expand it.
isoseq3.wdl
+
1
−
1
View file @
3d73a28b
...
...
@@ -32,7 +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)
Int timeMinutes =
1 +
ceil(size(inputBamFile, "G") * 240 / cores)
}
command <<<
...
...
This diff is collapsed.
Click to expand it.
lima.wdl
+
1
−
1
View file @
3d73a28b
...
...
@@ -51,7 +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)
Int timeMinutes =
1 +
ceil(size(inputBamFile, "G") * 240 / cores)
}
Map[String, String] libraryDesignOptions = {"same": "--same", "different": "--different", "neighbors": "--neighbors"}
...
...
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