Skip to content
This repository has been archived by the owner on Jan 27, 2020. It is now read-only.

Commit

Permalink
Merge pull request #479 from MaxUlysse/hotfixCurly
Browse files Browse the repository at this point in the history
Hotfix
  • Loading branch information
maxulysse authored Oct 6, 2017
2 parents 42f6ee1 + c230d58 commit 8cee6f6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion buildContainers.nf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
================================================================================
*/

version = '1.2.1'
version = '1.2.2'

// Check that Nextflow version is up to date enough
// try / throw / catch works for NF versions < 0.25 when this was implemented
Expand Down
2 changes: 1 addition & 1 deletion buildReferences.nf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
================================================================================
*/

version = '1.2.1'
version = '1.2.2'

// Check that Nextflow version is up to date enough
// try / throw / catch works for NF versions < 0.25 when this was implemented
Expand Down
26 changes: 13 additions & 13 deletions configuration/uppmax-localhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -60,31 +60,31 @@ process {
memory = {params.totalMemory}
}
$IndelRealigner {
memory = params.singleCPUMem * 2 * task.attempt
memory = {params.singleCPUMem * 2 * task.attempt}
}
$MapReads {
cpus = 16
memory = {params.totalMemory}
}
$MarkDuplicates {
memory = params.singleCPUMem * 2 * task.attempt
memory = {params.singleCPUMem * 2 * task.attempt}
}
$MergeBams {
cpus = 16
memory = {params.totalMemory}
}
$RealignerTargetCreator {
cpus = 4
memory = params.singleCPUMem * 4 * task.attempt
memory = {params.singleCPUMem * 4 * task.attempt}
}
$RecalibrateBam {
memory = {params.singleCPUMem * task.attempt}
}
$RunAlleleCount {
memory = params.singleCPUMem * 2 * task.attempt
memory = {params.singleCPUMem * 2 * task.attempt}
}
$RunAscat {
memory = params.singleCPUMem * 2 * task.attempt
memory = {params.singleCPUMem * 2 * task.attempt}
}
$RunBamQC {
cpus = 16
Expand All @@ -93,18 +93,18 @@ process {
$RunBcftoolsStats {
}
$RunConvertAlleleCounts {
memory = params.singleCPUMem * 2 * task.attempt
memory = {params.singleCPUMem * 2 * task.attempt}
}
$RunFastQC {
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
}
$RunFreeBayes {
cpus = 1
memory = { params.singleCPUMem * task.attempt}
memory = {params.singleCPUMem * task.attempt}
}
$RunHaplotypecaller {
// Increase memory quadratically
memory = params.singleCPUMem * task.attempt * task.attempt
memory = {params.singleCPUMem * task.attempt * task.attempt}
}
$RunGenotypeGVCFs {
}
Expand All @@ -116,24 +116,24 @@ process {
}
$RunMutect1 {
cpus = 1
memory = { params.singleCPUMem * task.attempt}
memory = {params.singleCPUMem * task.attempt}
}
$RunMutect2 {
cpus = 1
memory = { params.singleCPUMem * task.attempt}
memory = {params.singleCPUMem * task.attempt}
}
$RunSamtoolsStats {
}
$RunSnpeff {
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
memory = {params.totalMemory} // TODO Does SnpEff really require that much?
}
$RunStrelka {
cpus = 16
memory = {params.totalMemory}
}
$RunVEP {
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
memory = {params.totalMemory} // TODO Does VEP really require that much?
}
}
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
================================================================================
*/

version = '1.2.1'
version = '1.2.2'

// Check that Nextflow version is up to date enough
// try / throw / catch works for NF versions < 0.25 when this was implemented
Expand Down

0 comments on commit 8cee6f6

Please sign in to comment.