This repository was archived by the owner on Jan 27, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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?
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments