Skip to content

Commit

Permalink
Merge pull request #513 from lusacristan/master
Browse files Browse the repository at this point in the history
Adding Hypatia config
  • Loading branch information
lusacristan authored Jun 22, 2023
2 parents 930c83d + 8fd615f commit 7b7982f
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ jobs:
- "googlels"
- "hasta"
- "hki"
- "hypatia"
- "icr_davros"
- "ifb_core"
- "imperial"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ Currently documentation is available for the following systems:
- [GOOGLELS](docs/googlels.md)
- [HASTA](docs/hasta.md)
- [HKI](docs/hki.md)
- [HYPATIA](docs/hypatia.md)
- [ICR_DAVROS](docs/icr_davros.md)
- [IFB](docs/ifb_core.md)
- [IMPERIAL](docs/imperial.md)
Expand Down
24 changes: 24 additions & 0 deletions conf/hypatia.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
//Profile config names for Hypatia cluster in Universidad de los Andes
params {
config_profile_description = 'Universidad de los Andes cluster profile provided by nf-core/configs.'
config_profile_contact = 'Luisa Sacristan (@lusacristan)'
config_profile_url = 'https://exacore.uniandes.edu.co/es/'
}

singularity {
enabled = true
autoMounts = true
}

process {
executor = 'slurm'
queue = 'medium'
scratch = 'true'
}


params {
max_memory = 550.GB
max_cpus = 40
max_time = 168.h
}
20 changes: 20 additions & 0 deletions docs/hypatia.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# nf-core/configs: Hypatia Configuration

All nf-core pipelines have been successfully configured for use on the [Universidad de los Andes Hypatia Cluster](https://exacore.uniandes.edu.co/es/)

To use, run the pipeline with `-profile hypatia`. This will download and launch the [`hypatia.config`](../conf/hypatia.config) which has been pre-configured with a setup suitable for the Hypatia 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.

## Below are non-mandatory information e.g. on modules to load etc

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

```bash
## Load Java, Singularity and Nextflow environment modules
module purge
module load jdk/19.0.2
module load singularity/3.7.1
module load nextflow/22.10.1
```

> NB: You will need an account to use the HPC cluster on Hypatia 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 submited via sbatch. If in doubt contact IT.
1 change: 1 addition & 0 deletions nfcore_custom.config
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ profiles {
googlels { includeConfig "${params.custom_config_base}/conf/googlels.config" }
hasta { includeConfig "${params.custom_config_base}/conf/hasta.config" }
hki { includeConfig "${params.custom_config_base}/conf/hki.config"}
hypatia { includeConfig "${params.custom_config_base}/conf/hypatia.config"}
icr_davros { includeConfig "${params.custom_config_base}/conf/icr_davros.config" }
ifb_core { includeConfig "${params.custom_config_base}/conf/ifb_core.config" }
imperial { includeConfig "${params.custom_config_base}/conf/imperial.config" }
Expand Down

0 comments on commit 7b7982f

Please sign in to comment.