mirror of
https://github.com/MillironX/nf-configs.git
synced 2024-12-04 12:39:55 +00:00
Merge pull request #430 from athbaltzis/master
Add proteinfold-specific CRG config
This commit is contained in:
commit
68bb93ce9d
7 changed files with 81 additions and 0 deletions
1
.github/workflows/main.yml
vendored
1
.github/workflows/main.yml
vendored
|
@ -49,6 +49,7 @@ jobs:
|
||||||
- "cfc_dev"
|
- "cfc_dev"
|
||||||
- "cheaha"
|
- "cheaha"
|
||||||
- "computerome"
|
- "computerome"
|
||||||
|
- "crg"
|
||||||
- "crick"
|
- "crick"
|
||||||
- "crukmi"
|
- "crukmi"
|
||||||
- "denbi_qbic"
|
- "denbi_qbic"
|
||||||
|
|
|
@ -228,6 +228,8 @@ Currently documentation is available for the following pipelines within specific
|
||||||
- taxprofiler
|
- taxprofiler
|
||||||
- [EVA](docs/pipeline/taxprofiler/eva.md)
|
- [EVA](docs/pipeline/taxprofiler/eva.md)
|
||||||
- [hasta](docs/pipeline/taxprofiler/hasta.md)
|
- [hasta](docs/pipeline/taxprofiler/hasta.md)
|
||||||
|
- proteinfold
|
||||||
|
- [CRG](docs/pipeline/proteinfold/crg.md)
|
||||||
|
|
||||||
### Pipeline-specific documentation
|
### Pipeline-specific documentation
|
||||||
|
|
||||||
|
|
14
conf/crg.config
Executable file
14
conf/crg.config
Executable file
|
@ -0,0 +1,14 @@
|
||||||
|
//Profile config names for nf-core/configs
|
||||||
|
params {
|
||||||
|
config_profile_description = 'Centre for Genomic Regulation (CRG) cluster profile provided by nf-core/configs'
|
||||||
|
config_profile_contact = 'Athanasios Baltzis (@athbaltzis)'
|
||||||
|
config_profile_url = 'http://www.linux.crg.es/index.php/Main_Page'
|
||||||
|
}
|
||||||
|
|
||||||
|
process {
|
||||||
|
executor = 'crg'
|
||||||
|
}
|
||||||
|
|
||||||
|
singularity {
|
||||||
|
enabled = true
|
||||||
|
}
|
27
conf/pipeline/proteinfold/crg.config
Normal file
27
conf/pipeline/proteinfold/crg.config
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
profiles {
|
||||||
|
crg {
|
||||||
|
params {
|
||||||
|
config_profile_contact = 'Athanasios Baltzis (@athbaltzis)'
|
||||||
|
config_profile_description = 'nf-core/proteinfold CRG profile provided by nf-core/configs'
|
||||||
|
}
|
||||||
|
executor.name = 'crg'
|
||||||
|
process {
|
||||||
|
queue = 'short-sl7,long-sl7'
|
||||||
|
withName: 'RUN_AF2|RUN_AF2_PRED|COLABFOLD_BATCH' {
|
||||||
|
cpus = 1
|
||||||
|
memory = "30 GB"
|
||||||
|
queue = params.use_gpu ? 'gpu' : 'long-sl7'
|
||||||
|
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1' : '' ) }
|
||||||
|
}
|
||||||
|
withName: 'ARIA2' {
|
||||||
|
time = '12h'
|
||||||
|
}
|
||||||
|
withName: 'MMSEQS_COLABFOLDSEARCH' {
|
||||||
|
queue = 'mem_512'
|
||||||
|
memory = "100 GB"
|
||||||
|
cpus = 8
|
||||||
|
time = '12h'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
23
docs/pipeline/proteinfold/crg.md
Normal file
23
docs/pipeline/proteinfold/crg.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# nf-core/configs: CRG proteinfold specific configuration
|
||||||
|
|
||||||
|
Extra specific configuration for proteinfold pipeline
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To use, run the pipeline with `-profile crg`.
|
||||||
|
|
||||||
|
This will download and launch the proteinfold specific [`crg.config`](../../../conf/pipeline/proteinfold/crg.config) which has been pre-configured with a setup suitable for the sge cluster.
|
||||||
|
|
||||||
|
Example: `nextflow run nf-core/proteinfold -profile crg`
|
||||||
|
|
||||||
|
## proteinfold specific configurations for CRG
|
||||||
|
|
||||||
|
Specific configurations for CRG has been made for proteinfold.
|
||||||
|
|
||||||
|
### General profiles
|
||||||
|
|
||||||
|
<!-- TODO -->
|
||||||
|
|
||||||
|
### Contextual profiles
|
||||||
|
|
||||||
|
<!-- TODO -->
|
|
@ -30,6 +30,7 @@ profiles {
|
||||||
cfc_dev { includeConfig "${params.custom_config_base}/conf/cfc_dev.config" }
|
cfc_dev { includeConfig "${params.custom_config_base}/conf/cfc_dev.config" }
|
||||||
cheaha { includeConfig "${params.custom_config_base}/conf/cheaha.config" }
|
cheaha { includeConfig "${params.custom_config_base}/conf/cheaha.config" }
|
||||||
computerome { includeConfig "${params.custom_config_base}/conf/computerome.config" }
|
computerome { includeConfig "${params.custom_config_base}/conf/computerome.config" }
|
||||||
|
crg { includeConfig "${params.custom_config_base}/conf/crg.config" }
|
||||||
crick { includeConfig "${params.custom_config_base}/conf/crick.config" }
|
crick { includeConfig "${params.custom_config_base}/conf/crick.config" }
|
||||||
crukmi { includeConfig "${params.custom_config_base}/conf/crukmi.config" }
|
crukmi { includeConfig "${params.custom_config_base}/conf/crukmi.config" }
|
||||||
czbiohub_aws { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config" }
|
czbiohub_aws { includeConfig "${params.custom_config_base}/conf/czbiohub_aws.config" }
|
||||||
|
|
13
pipeline/proteinfold.config
Normal file
13
pipeline/proteinfold.config
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
/*
|
||||||
|
* -------------------------------------------------
|
||||||
|
* nfcore/proteinfold custom profile Nextflow config file
|
||||||
|
* -------------------------------------------------
|
||||||
|
* Config options for custom environments.
|
||||||
|
* Cluster-specific config options should be saved
|
||||||
|
* in the conf/pipeline/proteinfold folder and imported
|
||||||
|
* under a profile name here.
|
||||||
|
*/
|
||||||
|
|
||||||
|
profiles {
|
||||||
|
crg { includeConfig "${params.custom_config_base}/conf/pipeline/proteinfold/crg.config" }
|
||||||
|
}
|
Loading…
Reference in a new issue