Skip to content
Snippets Groups Projects
Unverified Commit 892bcdd1 authored by Cats's avatar Cats Committed by GitHub
Browse files

Merge pull request #127 from JasperBoom/develop

Add memory and cores variables to multiqc task.
parents 04ac871e 0d1190ca
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,7 @@ that users understand how the changes affect the new version.
version 1.0.0-dev
---------------------------
+ MultiQC: Add memory variable 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).
......
......@@ -38,6 +38,7 @@ 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 memory = 4
}
command {
......@@ -86,6 +87,7 @@ task MultiQC {
}
runtime {
memory: memory
docker: dockerImage
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment