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

1.2.4 #490

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -129,6 +129,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.