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