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

Commit 4a2c756

Browse files
authored
Merge pull request #490 from MaxUlysse/1.2.4
1.2.4
2 parents 2b0d7f5 + acdf367 commit 4a2c756

7 files changed

Lines changed: 16 additions & 112 deletions

File tree

buildContainers.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
3636
================================================================================
3737
*/
3838

39-
version = '1.2.3'
39+
version = '1.2.4'
4040

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

buildReferences.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
3939
================================================================================
4040
*/
4141

42-
version = '1.2.3'
42+
version = '1.2.4'
4343

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

configuration/uppmax-localhost.config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,14 @@ process {
131131
}
132132
$RunSamtoolsStats {
133133
}
134+
$RunSingleManta {
135+
cpus = 16
136+
memory = {params.totalMemory}
137+
}
138+
$RunSingleStrelka {
139+
cpus = 16
140+
memory = {params.totalMemory}
141+
}
134142
$RunSnpeff {
135143
errorStrategy = {task.exitStatus == 143 ? 'retry' : 'ignore'}
136144
memory = {params.totalMemory} // TODO Does SnpEff really require that much?

configuration/uppmax-slurm.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,11 @@ process {
132132
cpus = 1
133133
time = {params.runTime * task.attempt}
134134
}
135+
$RunSingleManta {
136+
}
137+
$RunSingleStrelka {
138+
time = {params.runTime * task.attempt}
139+
}
135140
$RunSnpeff {
136141
errorStrategy = { task.exitStatus == 143 ? 'retry' : 'ignore' }
137142
}

main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ kate: syntax groovy; space-indent on; indent-width 2;
6262
================================================================================
6363
*/
6464

65-
version = '1.2.3'
65+
version = '1.2.4'
6666

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

nextflow.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ params { // default value for params
1515
genome = 'GRCh38'
1616
help = false
1717
project = ''
18-
vcflist =''
1918
verbose = false
2019
version = false
2120
}

processVCFs.nf

Lines changed: 0 additions & 108 deletions
This file was deleted.

0 commit comments

Comments
 (0)