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
3df31b62
Commit
3df31b62
authored
5 years ago
by
JB
Browse files
Options
Downloads
Patches
Plain Diff
Add memory and cores variables to multiqc task.
parent
04ac871e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGELOG.md
+1
-0
1 addition, 0 deletions
CHANGELOG.md
multiqc.wdl
+4
-0
4 additions, 0 deletions
multiqc.wdl
with
5 additions
and
0 deletions
CHANGELOG.md
+
1
−
0
View file @
3df31b62
...
...
@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 1.0.0-dev
---------------------------
+
MultiQC: Add memory and cores variables to multiqc task.
+
GATK: SplitNCigarReads, BaseRecalibration and ApplyBQSR do no longer need regions files as required inputs.
+
VarDict: Add user definable flags (-M, -A, -Q, -d, -v, -f) to the paired VCF filtering script.
+
Cutadapt: If the output is a gzipped file, compress with level 1 (instead of default 6).
...
...
This diff is collapsed.
Click to expand it.
multiqc.wdl
+
4
−
0
View file @
3df31b62
...
...
@@ -38,6 +38,8 @@ task MultiQC {
Boolean verbose = false
Boolean quiet = false
Array[Boolean] finished = [] # An array of booleans that can be used to let multiqc wait on stuff.
Int? cores = 1
Int? memory = 4
}
command {
...
...
@@ -86,6 +88,8 @@ task MultiQC {
}
runtime {
cpu: cores
memory: memory
docker: dockerImage
}
}
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