-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #542 from dmarron/unc_lccc
Add unc lccc instituational profile
- Loading branch information
Showing
5 changed files
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,6 +114,7 @@ jobs: | |
- "ucd_sonic" | ||
- "uge" | ||
- "unibe_ibu" | ||
- "unc_lccc" | ||
- "uppmax" | ||
- "utd_ganymede" | ||
- "utd_sysbio" | ||
|
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,20 @@ | ||
params { | ||
config_profile_description = 'The Lineberger Comprehensive Cancer Center at the University of North Carolina at Chapel Hill' | ||
config_profile_contact = 'Alan Hoyle (@alanhoyle)' | ||
config_profile_url = 'https://lbc.unc.edu' | ||
singularity_library_dir = '/datastore/lbcfs/labs/bioinformatics/software/singularity-library' | ||
} | ||
|
||
process { | ||
executor = "slurm" | ||
queue = "allnodes" | ||
} | ||
singularity{ | ||
enabled = true | ||
autoMounts = true | ||
runOptions = '-B /datastore' | ||
} | ||
params { | ||
max_memory = 950.GB | ||
max_cpus = 90 | ||
} |
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,19 @@ | ||
# nf-core/configs: PROFILE Configuration | ||
|
||
All nf-core pipelines have been successfully configured for use on the Lineberger Bioinformatics Group cluster at the University of North Carolina at Chapel Hill Lineberger Comprehensive Cancer Center. | ||
|
||
To use, run the pipeline with `-profile unc_lccc`. This will download and launch the [`unc_lccc.config`](../conf/unc_lccc.config) which has been pre-configured with a setup suitable for the LBG cluster. Using this profile, docker images containing all of the required software will be downloaded, and converted to a Singularity/Apptainer image before execution of the pipeline. | ||
|
||
## Below are non-mandatory information e.g. on modules to load etc | ||
|
||
Before running pipelines you will need to login to a compute node and install nextflow https://www.nextflow.io/. You can do this by issuing the commands below: | ||
|
||
```bash | ||
## install Nextflow | ||
module purge | ||
module load Nextflow/0.32.0 | ||
module load Singularity/2.6.0 | ||
``` | ||
|
||
> NB: You will need an account to use the in order to run the pipelines. If in doubt contact <[email protected]>. | ||
> 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 executed on one of the login nodes. If in doubt contact IT. |
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