diff --git a/configuration/uppmax-localhost.config b/configuration/uppmax-localhost.config index 94df4eb7d3..68ec75b550 100644 --- a/configuration/uppmax-localhost.config +++ b/configuration/uppmax-localhost.config @@ -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? diff --git a/configuration/uppmax-slurm.config b/configuration/uppmax-slurm.config index 2b6c15fff2..38549cc48b 100644 --- a/configuration/uppmax-slurm.config +++ b/configuration/uppmax-slurm.config @@ -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' } }