Skip to content

Commit

Permalink
Merge pull request #854 from mskcc/hotfix/1.3.4_rerelease
Browse files Browse the repository at this point in the history
hotfix of QcQualimap memory limit and update of container image version
  • Loading branch information
anoronh4 authored Oct 20, 2020
2 parents 9b55ae5 + ca47b66 commit 5c15fc5
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions conf/containers.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
container = "cmopipeline/strelka2-manta-bcftools-vt:2.0.0"
}
withName:SomaticCombineChannel {
container = "cmopipeline/bcftools-vt:1.2.1"
container = "cmopipeline/bcftools-vt:1.2.2"
}
withName:SomaticAnnotateMaf {
container = "cmopipeline/vcf2maf:vep88_1.2.3"
Expand Down Expand Up @@ -101,7 +101,7 @@
container = "cmopipeline/strelka2_manta:latest"
}
withName:GermlineCombineChannel {
container = "cmopipeline/bcftools-vt:1.2.1"
container = "cmopipeline/bcftools-vt:1.2.2"
}
withName:GermlineAnnotateMaf {
container = "cmopipeline/vcf2maf:vep88_1.2.3"
Expand Down
2 changes: 1 addition & 1 deletion conf/resources.config
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
}
withName:QcQualimap {
cpus = { 2 }
memory = { 6.GB }
memory = { task.attempt < 3 ? 6.GB * task.attempt : 12.GB * task.attempt }
}
withName:QcCollectHsMetrics {
cpus = { 2 }
Expand Down
2 changes: 1 addition & 1 deletion conf/resources_aws.config
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
}
withName:QcQualimap {
cpus = { 2 }
memory = { 3.GB * task.attempt }
memory = { task.attempt < 3 ? 3.GB * task.attempt : 6.GB * task.attempt }
}
withName:QcCollectHsMetrics {
cpus = { 1 }
Expand Down
2 changes: 1 addition & 1 deletion conf/resources_aws_genome.config
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
}
withName:QcQualimap {
cpus = { 2 }
memory = { 6.GB * task.attempt }
memory = { task.attempt < 3 ? 6.GB * task.attempt : 12.GB * task.attempt }
}

//------------- Cohort Aggregation
Expand Down
2 changes: 1 addition & 1 deletion conf/resources_juno.config
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
}
withName:QcQualimap {
cpus = { 2 }
memory = { 3.GB * task.attempt }
memory = { task.attempt < 3 ? 3.GB * task.attempt : 6.GB * task.attempt }
}
withName:QcCollectHsMetrics {
cpus = { 1 }
Expand Down
2 changes: 1 addition & 1 deletion conf/resources_juno_genome.config
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
}
withName:QcQualimap {
cpus = { 2 }
memory = { 6.GB * task.attempt }
memory = { task.attempt < 3 ? 6.GB * task.attempt : 12.GB * task.attempt }
}

//------------- Cohort Aggregation
Expand Down

0 comments on commit 5c15fc5

Please sign in to comment.