Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add imb.config #579

Merged
merged 1 commit into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ jobs:
- "hypatia"
- "icr_davros"
- "ifb_core"
- "imb"
- "imperial"
- "incliva"
- "ipop_up"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ Currently documentation is available for the following systems:
- [ICR_DAVROS](docs/icr_davros.md)
- [IFB](docs/ifb_core.md)
- [IMPERIAL](docs/imperial.md)
- [IMB](docs/imb.md)
- [INCLIVA](docs/incliva.md)
- [iPOP-UP](docs/ipop_up.md)
- [Janelia Research Campus](docs/janelia.md)
Expand Down
30 changes: 30 additions & 0 deletions conf/imb.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@

params {
config_profile_description = 'Institute of Molecular Biology (IMB) HPC cluster profile provided by nf-core/configs'
config_profile_url = 'https://imb-mainz.de/'
config_profile_contact = 'Patrick Hüther ([email protected])'
config_profile_name = 'IMB HPC cluster'

max_cpus = 32
max_memory = 1.TB
max_time = 7.d
}

singularity {
enabled = true
autoMounts = true
}

executor {
name = 'slurm'
jobName = { "${task.process.split(':').last()}" }
queueSize = 20
}

process {
scratch = '/jobdir/$SLURM_JOB_ID'
cache = 'lenient'
queue = "groups".execute().text.contains('imb-bioinfocf')
? { task.time <= 5.h ? 'bcfshort' : 'bcflong' }
: { task.time <= 5.h ? 'short' : 'long' }
}
15 changes: 15 additions & 0 deletions docs/imb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# nf-core/configs: IMB Configuration

All nf-core pipelines have been successfully configured for use on the HPC system at the Institute of Molecular Biology (IMB) in Mainz / Germany.

To use this profile, run the pipeline with `-profile imb`. This will download and launch the [`imb.config`](../conf/imb.config) which has been pre-configured with a setup suitable for the IMB HPC system. Using this profile, container images with all required software will be downloaded before execution of the pipeline.

Before running the pipeline, you will need to load Nextflow using the environment module system on the IMB HPC system. You can do this by issuing the command below:

```bash
module load nextflow
```

:::note
You will need an account to use the IMB HPC cluster in order to run the pipeline. 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 @@ -58,6 +58,7 @@ profiles {
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" }
imb { includeConfig "${params.custom_config_base}/conf/imb.config" }
imperial { includeConfig "${params.custom_config_base}/conf/imperial.config" }
incliva { includeConfig "${params.custom_config_base}/conf/incliva.config" }
ipop_up { includeConfig "${params.custom_config_base}/conf/ipop_up.config" }
Expand Down