1
0
Fork 0
mirror of https://github.com/MillironX/nf-configs.git synced 2024-11-10 20:13:09 +00:00

Add Aquila Config Singapore

This commit is contained in:
Alexander Peltzer 2019-05-04 23:20:15 +02:00
parent 4cad12c918
commit 0acdcc3813
4 changed files with 36 additions and 0 deletions

View file

@ -84,6 +84,7 @@ See [`nf-core/configs/docs`](https://github.com/nf-core/configs/tree/master/docs
Currently documentation is available for the following clusters:
* [AQUILA](docs/aquila.md)
* [BINAC](docs/binac.md)
* [BIGPURPLE](docs/bigpurple.md)
* [CCGA](docs/ccga.md)

26
conf/aquila.config Normal file
View file

@ -0,0 +1,26 @@
//Profile config names for nf-core/configs
params {
config_profile_description = 'A*STAR Aquila cluster profile provided by nf-core/configs.'
config_profile_contact = 'Andreas Wilm (@andreas-wilm)'
config_profile_url = 'https://www.a-star.edu.sg/'
}
singularity {
enabled = true
}
process {
beforeScript = { 'source /mnt/projects/rpd/rc/init.2017-04; module load miniconda3; set +u; source activate ' + params.container.replaceAll(/[\/:]/, '-').replaceAll(/nfcore/, 'nf-core') + "; set -u;" }
executor = 'sge'
clusterOptions = { "-l mem_free=" + task.memory.toString().replaceAll(/[\sB]/,'') }
penv = 'OpenMP'
}
params {
igenomes_base = '/nfsmounts/igenomes'
max_memory = 128.GB
max_cpus = 28
max_time = 48.h
}

8
docs/aquila.md Normal file
View file

@ -0,0 +1,8 @@
# nf-core/configs: Aquila Configuration
All nf-core pipelines have been successfully configured for use on the Aquila cluster at A*STAR Singapore.
To use, run the pipeline with `-profile aquila`. This will download and launch the [`aquila.config`](../conf/aquila.config) which has been pre-configured with a setup suitable for the Aquila 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 the HPC cluster Aquila 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 HPC cluster and as such the commands above will have to be executed on one of the login nodes. If in doubt contact IT.

View file

@ -12,6 +12,7 @@ params.custom_config_version = 'master'
params.custom_config_base = "https://raw.githubusercontent.com/nf-core/configs/${params.custom_config_version}"
profiles {
aquila { includeConfig "${params.custom_config_base}/conf/aquila.config" }
binac { includeConfig "${params.custom_config_base}/conf/binac.config" }
ccga { includeConfig "${params.custom_config_base}/conf/ccga.config" }
cfc { includeConfig "${params.custom_config_base}/conf/cfc.config" }