mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-22 16:29:55 +00:00
Merge pull request #79 from apeltzer/master
Fix for BinAC profile / resources etc pp
This commit is contained in:
commit
f19ddb847d
3 changed files with 36 additions and 1 deletions
|
@ -13,11 +13,12 @@ process {
|
||||||
beforeScript = 'module load devel/singularity/3.0.3'
|
beforeScript = 'module load devel/singularity/3.0.3'
|
||||||
executor = 'pbs'
|
executor = 'pbs'
|
||||||
queue = 'short'
|
queue = 'short'
|
||||||
|
process.queue = { task.memory > 128.GB ? 'smp': task.time <= 20.m ? 'tiny' : task.time <= 48.h ? 'short' : task.time <= 168.h ? 'short' : 'long'}
|
||||||
}
|
}
|
||||||
|
|
||||||
params {
|
params {
|
||||||
igenomes_base = '/nfsmounts/igenomes'
|
igenomes_base = '/nfsmounts/igenomes'
|
||||||
max_memory = 128.GB
|
max_memory = 1000.GB
|
||||||
max_cpus = 28
|
max_cpus = 28
|
||||||
max_time = 48.h
|
max_time = 48.h
|
||||||
}
|
}
|
||||||
|
|
26
conf/denbi_qbic.config
Normal file
26
conf/denbi_qbic.config
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'de.NBI cluster profile provided by nf-core/configs.'
|
||||||
|
config_profile_contact = 'Alexander Peltzer (@apeltzer)'
|
||||||
|
config_profile_url = 'https://cloud.denbi.de/'
|
||||||
|
}
|
||||||
|
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
executor = 'pbs'
|
||||||
|
queue = 'batch'
|
||||||
|
}
|
||||||
|
|
||||||
|
params {
|
||||||
|
max_memory = 512.GB
|
||||||
|
max_cpus = 28
|
||||||
|
max_time = 960.h
|
||||||
|
}
|
||||||
|
|
||||||
|
weblog{
|
||||||
|
enabled = true
|
||||||
|
url = 'https://services.qbic.uni-tuebingen.de/flowstore/workflows'
|
||||||
|
}
|
8
docs/denbi_qbic.md
Normal file
8
docs/denbi_qbic.md
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
# nf-core/configs: de.NBI QBIC Configuration
|
||||||
|
|
||||||
|
All nf-core pipelines have been successfully configured for use on the de.NBI Cloud cluster. This is a virtual cluster that has been set up using the [virtual cluster setup scripts](https://github.com/MaximilianHanussek/virtual_cluster_local_ips).
|
||||||
|
|
||||||
|
To use, run the pipeline with `-profile denbi_qbic`. This will download and launch the [`denbi_qbic.config`](../conf/denbi_qbic.config) which has been pre-configured with a setup suitable for the automatically created cluster. Using this profile, a Docker image containing all of the required software will be downloaded, and converted to a Singularity image before execution of the pipeline.
|
||||||
|
|
||||||
|
>NB: You will need an account to use de.NBI Cluster in order to run the pipeline. If in doubt contact IT.
|
||||||
|
>NB: Nextflow will need to submit the jobs via the job scheduler to the cluster and as such the commands above will have to be executed on one of the login nodes. If in doubt contact IT.
|
Loading…
Reference in a new issue