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

Binac addition #596

Merged
merged 4 commits into from
Jun 7, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions configuration/binac.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
/*
* ----------------------------------------------------------------------------
* Nextflow config file for use with Singularity on BINAC cluster in Tuebingen
* ----------------------------------------------------------------------------
* Defines basic usage limits and singularity image id.
*/

singularity {
enabled = true
}

process {
beforeScript = 'module load devel/singularity/2.4.1'
executor = 'pbs'
queue = 'short'
}

params {
max_memory = 128.GB
max_cpus = 28
max_time = 48.h
}
10 changes: 10 additions & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,14 @@ profiles {
includeConfig 'configuration/travis.config'
includeConfig 'configuration/singularity-path.config'
}

// Default config for german BinAC cluster
// Runs the pipeline using the pbs executor
// Singularity images will be pulled automatically
binac {
includeConfig 'configuration/base.config'
includeConfig 'configuration/binac.config'
includeConfig 'configuration/singularity.config'
includeConfig 'configuration/containers.config'
}
}