Skip to content

Commit

Permalink
Merge pull request nf-core#499 from athbaltzis/master
Browse files Browse the repository at this point in the history
Update crg config for the proteinfold pipeline
  • Loading branch information
athbaltzis authored May 4, 2023
2 parents 450be9c + 8b6ff2b commit bbf065f
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions conf/pipeline/proteinfold/crg.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,26 @@ profiles {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-sl7'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1' : '' ) }
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'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1' : '' ) }
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
withName: 'MMSEQS_COLABFOLDSEARCH' {
queue = 'mem_512'
memory = "100 GB"
cpus = 8
time = '12h'
}
withName: 'RUN_ESMFOLD' {
cpus = 1
memory = "30 GB"
queue = params.use_gpu ? 'gpu' : 'long-sl7'
clusterOptions = { ( task.queue == 'gpu' ? '-l gpu=1,virtual_free=30G' : '' ) }
}
}
}
}

0 comments on commit bbf065f

Please sign in to comment.