-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
few changes, queue on cluster is removed
- Loading branch information
1 parent
277fde6
commit 615257b
Showing
2 changed files
with
32 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
/* | ||
* ---------------------------------------------------------------------------- | ||
* Nextflow config file for use with Singularity on BINAC cluster in Tuebingen | ||
* Nextflow config file for use with Singularity on Mendel cluster in GMI, Vienna | ||
* ---------------------------------------------------------------------------- | ||
* Defines basic usage limits and singularity image id. | ||
*/ | ||
|
||
process { | ||
executor = 'pbs' | ||
queue = 'short' | ||
clusterOptions = { "-P $params.project " } | ||
} | ||
|
||
executor { | ||
$pbs { | ||
name = 'pbs' | ||
queueSize = 500 | ||
queueSize = 1000 | ||
} | ||
} | ||
|
||
params { | ||
max_memory = 250.GB | ||
max_cpus = 24 | ||
max_time = 16.h | ||
max_time = 2.d | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters