1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-09-21 14:02:05 +00:00

Merge pull request #144 from MaxUlysse/UPPMAX

[UPPMAX] add s.* pattern for bianca cluster
This commit is contained in:
Phil Ewels 2020-03-30 17:01:38 +02:00 committed by GitHub
commit 554ab6673c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ params {
igenomeIgnore = true igenomeIgnore = true
genomes_base = params.genome == 'GRCh37' ? '/sw/data/uppnex/ToolBox/ReferenceAssemblies/hg38make/bundle/2.8/b37' : '/sw/data/uppnex/ToolBox/hg38bundle' genomes_base = params.genome == 'GRCh37' ? '/sw/data/uppnex/ToolBox/ReferenceAssemblies/hg38make/bundle/2.8/b37' : '/sw/data/uppnex/ToolBox/hg38bundle'
} }
if (hostname ==~ "r.*") { if (hostname ==~ "r.*") {
params.singleCPUmem = 6400.MB params.singleCPUmem = 6400.MB
} }
if (hostname ==~ "i.*") { if (hostname ==~ "i.*") {

View file

@ -26,7 +26,7 @@ params {
def hostname = "hostname".execute().text.trim() def hostname = "hostname".execute().text.trim()
if (hostname ==~ "b.*") { if (hostname ==~ "b.*" || hostname ==~ "s.*") {
params.max_memory = 109.GB params.max_memory = 109.GB
} }