mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-11-11 04:23:10 +00:00
commit
8a9c321e44
2 changed files with 8 additions and 4 deletions
|
@ -12,12 +12,14 @@ process {
|
|||
clusterOptions = { task.time <= 8.h ? '--qos short': task.time <= 48.h ? '--qos medium' : '--qos long' }
|
||||
}
|
||||
|
||||
singularity.enabled = true
|
||||
singularity {
|
||||
enabled = true
|
||||
cacheDir = '/scratch-cbe/shared/containers'
|
||||
}
|
||||
|
||||
params {
|
||||
params.max_time = 14.d
|
||||
params.max_cpus = 36
|
||||
params.max_memory = 4.TB
|
||||
igenomes_ignore = true
|
||||
igenomesIgnore = true //deprecated
|
||||
}
|
||||
igenomes_base = '/resources/references/igenomes'
|
||||
}
|
||||
|
|
|
@ -13,5 +13,7 @@ module load nextflow/19.04.0
|
|||
module load singularity/3.2.1
|
||||
```
|
||||
|
||||
A local copy of the [AWS-iGenomes](https://registry.opendata.aws/aws-igenomes/) resource has been made available on CBE 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.
|
||||
|
||||
>NB: You will need an account to use the HPC cluster on CBE 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 executed on one of the login nodes. If in doubt contact IT.
|
||||
|
|
Loading…
Reference in a new issue