Skip to content

Commit bbf97b1

Browse files
committed
Adds process_gpu label
1 parent c0066f7 commit bbf97b1

8 files changed

Lines changed: 10 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4040
- [[PR #306](https://github.com/nf-core/proteinfold/pull/306)] - extract_output.py -> extract_metrics.py so pLDDT, MSA, PAE emitted as raw data .tsv files
4141
- [[PR #307](https://github.com/nf-core/proteinfold/pull/307)] - Update Boltz-1 boilerplate and formatting.
4242
- [[PR #314](https://github.com/nf-core/proteinfold/pull/314)] - Fix extract metrics for broken modules.
43+
- [[PR #316](https://github.com/nf-core/proteinfold/pull/316)] - Add process_gpu label to modules which use GPU.
4344

4445
### Parameters
4546

conf/base.config

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ process {
5252
withLabel:process_high_memory {
5353
memory = { 200.GB * task.attempt }
5454
}
55+
withLabled:process_gpu {
56+
accelerator = 1
57+
}
5558
withLabel:error_ignore {
5659
errorStrategy = 'ignore'
5760
}

modules/local/colabfold_batch/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
process COLABFOLD_BATCH {
22
tag "$meta.id"
33
label 'process_medium'
4+
label 'process_gpu'
45

56
container "nf-core/proteinfold_colabfold:dev"
67

modules/local/run_alphafold2/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
process RUN_ALPHAFOLD2 {
55
tag "$meta.id"
66
label 'process_medium'
7+
label 'process_gpu'
78

89
container "nf-core/proteinfold_alphafold2_standard:dev"
910

modules/local/run_alphafold2_pred/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
process RUN_ALPHAFOLD2_PRED {
55
tag "$meta.id"
66
label 'process_medium'
7+
label 'process_gpu'
78

89
container "nf-core/proteinfold_alphafold2_pred:dev"
910

modules/local/run_esmfold/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
process RUN_ESMFOLD {
22
tag "$meta.id"
33
label 'process_medium'
4+
label 'process_gpu'
45

56
container "nf-core/proteinfold_esmfold:dev"
67

modules/local/run_helixfold3/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
process RUN_HELIXFOLD3 {
55
tag "$meta.id"
66
label 'process_medium'
7+
label 'process_gpu'
78

89
container "nf-core/proteinfold_helixfold3:dev"
910

modules/local/run_rosettafold_all_atom/main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
process RUN_ROSETTAFOLD_ALL_ATOM {
55
tag "$meta.id"
66
label 'process_medium'
7+
label 'process_gpu'
78

89
container "nf-core/proteinfold_rosettafold_all_atom:dev"
910

0 commit comments

Comments
 (0)