UzL OMICS Cluster Configuration

The rnaseq nf-core pipeline has been successfully configured for use on the UzL OMICS cluster at the University of Luebeck. Implementation of nf-core pipelines for use on the UzL OMICS is in process.

To use, run the pipeline with -profile uzl_omics. This will download and launch the uzl_omics.config which has been pre-configured with a setup suitable for the UzL OMICS 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.

Before running the pipeline you will need to load Nextflow and Singularity using the environment module system on UzL OMICS cluster. You can do this by issuing the commands below:

module load nextflow
module load singularity

nf-core requires a Nextflow version 22.10.1 or higher, so you have to intall a more recent version first.

Below are non-mandatory information

note: You will need access to the UzL OMICS cluster in order to run the pipeline. In doubt contact IT.

Config file

See config file on GitHub

uzl_omics.config
params {
    config_profile_description = 'University of Luebeck, OMICS cluster profile provided by nf-core/configs.'
    config_profile_contact = 'Finja Sygo (@finjasygo) and Varun Sreenivasan (@varunkas) (Institut fuer Humangenetik)'
    config_profile_url = 'https://www.itsc.uni-luebeck.de/dienstleistungen/omics.html'
}
 
params {
    max_memory = 760.GB
    max_cpus   = 48
    max_time   = 72.h
}
 
process {
    executor = 'slurm'
    queue = 'shortterm'
    scratch = '$SCRATCH'
}
 
singularity {
    enabled = true
}