-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds institutional configs and docs for Unity HPC final version.
- Loading branch information
1 parent
34e7944
commit 666aa36
Showing
2 changed files
with
48 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# nf-core/configs: Unity HPC Configuration | ||
|
||
All nf-core pipelines have been successfully configured for use on the Unity HPC. | ||
|
||
To use, run the pipeline with `-profile unity`. This will download and launch the [`unity.config`](../conf/unity.config) which has been pre-configured with a setup suitable for the UNITY cluster. Using this profile, an Apptainer image containing all of the required software will be downloaded, and converted to an Apptainer image before execution of the pipeline. | ||
|
||
## Running the pipeline | ||
|
||
Before running the pipeline you will need to load Nextflow and Apptainer using the environment module system on UNITY CLUSTER. You can do this by issuing the commands below: | ||
|
||
```bash | ||
## Load Nextflow and Apptainer environment modules | ||
module purge | ||
module load nextflow/24.04.3 | ||
module load apptainer/latest | ||
|
||
nextflow run <pipeline_name> -profile unity | ||
``` | ||
|
||
Apptainer module will look for a cache directory with the name `.apptainer/cache` in your `/home` or `/work` directory. Please create the cache directory in `/work/pi_<pi_name>/.apptainer/cache` or `/work/pi_<pi_name>/<username>/.apptainer/cache` to prevent apptainer filling your HOME directory. | ||
|
||
## iGenome database | ||
|
||
A local copy of the iGenomes resource has been made available on UNITY CLUSTER so you should be able to run the pipeline against any reference available in the `igenomes.config` specific to the nf-core pipeline. | ||
You can do this by simply using the `--genome <GENOME_ID>` parameter. | ||
|
||
:::note | ||
You will need an account to use the HPC cluster on UNITY CLUSTER in order to run the pipeline. If in doubt contact `[email protected]`. | ||
::: |