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

Commit afd70ac

Browse files
committed
Merge remote-tracking branch 'upstream/master' into MultiQC
2 parents 1c477a6 + 90acb6e commit afd70ac

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

configuration/binac.config

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/*
2+
* ----------------------------------------------------------------------------
3+
* Nextflow config file for use with Singularity on BINAC cluster in Tuebingen
4+
* ----------------------------------------------------------------------------
5+
* Defines basic usage limits and singularity image id.
6+
*/
7+
8+
singularity {
9+
enabled = true
10+
}
11+
12+
process {
13+
beforeScript = 'module load devel/singularity/2.4.1'
14+
executor = 'pbs'
15+
queue = 'short'
16+
}
17+
18+
params {
19+
max_memory = 128.GB
20+
max_cpus = 28
21+
max_time = 48.h
22+
}

nextflow.config

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,14 @@ profiles {
7474
includeConfig 'configuration/travis.config'
7575
includeConfig 'configuration/singularity-path.config'
7676
}
77+
78+
// Default config for german BinAC cluster
79+
// Runs the pipeline using the pbs executor
80+
// Singularity images will be pulled automatically
81+
binac {
82+
includeConfig 'configuration/base.config'
83+
includeConfig 'configuration/binac.config'
84+
includeConfig 'configuration/singularity.config'
85+
includeConfig 'configuration/containers.config'
86+
}
7787
}

0 commit comments

Comments
 (0)