Marvin Configuration

All nf-core pipelines have been successfully configured for use on the Marvin HPC cluster of the Universitat Pompeu Fabra (UPF). To use, run the pipeline with -profile marvin.

NB: You will need an account to use the HPC cluster on the Marvin cluster in order to run the pipeline. If in doubt contact IT. NB: Nextflow will need to submit the jobs via the SLURM scheduler to the HPC cluster and as such the commands above will have to be executed on one of the head nodes. If in doubt contact IT.

Pipeline Specific profiles

There are no specific profiles added for now

Config file

See config file on GitHub

marvin.config
//Profile config names for nf-core/configs
params {
    config_profile_description = 'Config file for Marvin Cluster (UPF-CSIC), based on nf-core/configs'
    config_profile_contact = 'pc.quilis@gmail.com (Pablo Carrion)'
    config_profile_url = 'https://www.ibe.upf-csic.es'
    max_memory = 256.GB
    max_cpus = 32
    max_time = 960.h
}
 
cleanup = false
 
singularity {
    enabled = true
    autoMounts = true
}
 
process {
    executor = 'slurm'
}