Skip to content
Snippets Groups Projects
Unverified Commit dc25ddab authored by Ruben Vorderman's avatar Ruben Vorderman Committed by GitHub
Browse files

Merge pull request #163 from biowdl/BIOWDL-357

update memory for combine gvcfs
parents e18eed74 16b53a21
No related branches found
No related tags found
No related merge requests found
......@@ -11,6 +11,10 @@ that users understand how the changes affect the new version.
version 2.1.0-dev
---------------------------
+ Make intervals optional for GATK CombineGVCFs
+ Updated biowdl-input-converter version.
+ GATK CombineGVCFs memory was tripled to prevent it from using a lot of CPU in
Garbage Collection mode.
+ Updated parameter_meta sections for Minimap2 and TranscriptClean to wdl-aid format.
+ Updated cores variable for TALON, the default is now 4.
+ Updated TALON to version 4.4.
......
......@@ -31,7 +31,7 @@ task InputConverter {
Boolean skipFileCheck=true
Boolean checkFileMd5sums=false
Boolean old=false
String dockerImage = "quay.io/biocontainers/biowdl-input-converter:0.2.0--py_0"
String dockerImage = "quay.io/biocontainers/biowdl-input-converter:0.2.1--py_0"
}
command <<<
......
......@@ -95,14 +95,14 @@ task CombineGVCFs {
input {
Array[File]+ gvcfFiles
Array[File]+ gvcfFilesIndex
Array[File]+ intervals
Array[File] intervals = []
String outputPath
File referenceFasta
File referenceFastaDict
File referenceFastaFai
String memory = "12G"
String javaXmx = "4G"
String memory = "24G"
String javaXmx = "12G"
String dockerImage = "quay.io/biocontainers/gatk4:4.1.0.0--0"
}
......@@ -114,7 +114,7 @@ task CombineGVCFs {
-R ~{referenceFasta} \
-O ~{outputPath} \
-V ~{sep=' -V ' gvcfFiles} \
-L ~{sep=' -L ' intervals}
~{true='-L' false='' length(intervals) > 0} ~{sep=' -L ' intervals}
}
output {
......
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