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 #490 from MaxUlysse/1.2.4
Browse files Browse the repository at this point in the history
1.2.4
  • Loading branch information
maxulysse committed Oct 27, 2017
2 parents 2b0d7f5 + acdf367 commit 4a2c756
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 112 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.3'
version = '1.2.4'

// 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.3'
version = '1.2.4'

// Check that Nextflow version is up to date enough
// try / throw / catch works for NF versions < 0.25 when this was implemented
Expand Down
8 changes: 8 additions & 0 deletions configuration/uppmax-localhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,14 @@ process {
}
$RunSamtoolsStats {
}
$RunSingleManta {
cpus = 16
memory = {params.totalMemory}
}
$RunSingleStrelka {
cpus = 16
memory = {params.totalMemory}
}
$RunSnpeff {
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
memory = {params.totalMemory} // TODO Does SnpEff really require that much?
Expand Down
5 changes: 5 additions & 0 deletions configuration/uppmax-slurm.config
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@ process {
cpus = 1
time = {params.runTime * task.attempt}
}
$RunSingleManta {
}
$RunSingleStrelka {
time = {params.runTime * task.attempt}
}
$RunSnpeff {
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
}
Expand Down
2 changes: 1 addition & 1 deletion main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
================================================================================
*/

version = '1.2.3'
version = '1.2.4'

// Check that Nextflow version is up to date enough
// try / throw / catch works for NF versions < 0.25 when this was implemented
Expand Down
1 change: 0 additions & 1 deletion nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ params { // default value for params
genome = 'GRCh38'
help = false
project = ''
vcflist =''
verbose = false
version = false
}
Expand Down
108 changes: 0 additions & 108 deletions processVCFs.nf

This file was deleted.

0 comments on commit 4a2c756

Please sign in to comment.