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

Update crg config #565

Merged
merged 2 commits into from
Oct 6, 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
2 changes: 1 addition & 1 deletion conf/crg.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//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_contact = 'Jose Espinosa-Carrasco (@joseespinosa)'
config_profile_url = 'http://www.linux.crg.es/index.php/Main_Page'
}

Expand Down
10 changes: 5 additions & 5 deletions conf/pipeline/proteinfold/crg.config
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
profiles {
crg {
params {
config_profile_contact = 'Athanasios Baltzis (@athbaltzis)'
config_profile_contact = 'Jose Espinosa-Carrasco (@joseespinosa)'
config_profile_description = 'nf-core/proteinfold CRG profile provided by nf-core/configs'
}
executor.name = 'crg'
process {
queue = 'short-sl7,long-sl7'
queue = 'short-centos79,long-centos79'
withName: 'ARIA2' {
time = '12h'
}
withName: 'RUN_ALPHAFOLD2|RUN_ALPHAFOLD2_PRED|RUN_ALPHAFOLD2_MSA' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-sl7'
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
withName: 'COLABFOLD_BATCH' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-sl7'
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
withName: 'MMSEQS_COLABFOLDSEARCH' {
Expand All @@ -31,7 +31,7 @@ profiles {
withName: 'RUN_ESMFOLD' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-sl7'
queue = params.use_gpu ? 'gpu' : 'long-centos79'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
}
Expand Down