Skip to content

Commit b53b2c3

Browse files
jscghJoseEspinosa
andauthored
Apply suggestions from code review
Co-authored-by: Jose Espinosa-Carrasco <[email protected]>
1 parent e329e6b commit b53b2c3

File tree

5 files changed

+24
-25
lines changed

5 files changed

+24
-25
lines changed

docs/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ If you specify the `--esmfold_db <PATH>` parameter, the directory structure of y
426426
└── esmfold_3B_v1.pt
427427
```
428428

429-
HelixFold3 can be run using this command (note that HF3 requires .json files not .fasta):
429+
HelixFold3 can be run using this command (note that HF3 requires `.json` files not `.fasta`):
430430

431431
```console
432432
nextflow run nf-core/proteinfold \

main.nf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -311,10 +311,10 @@ workflow NFCORE_PROTEINFOLD {
311311
PREPARE_HELIXFOLD3_DBS.out.helixfold3_init_models,
312312
PREPARE_HELIXFOLD3_DBS.out.helixfold3_maxit_src
313313
)
314-
ch_helixfold3_top_ranked_pdb = HELIXFOLD3.out.top_ranked_pdb
315-
ch_multiqc = ch_multiqc.mix(HELIXFOLD3.out.multiqc_report.collect())
316-
ch_versions = ch_versions.mix(HELIXFOLD3.out.versions)
317-
ch_report_input = ch_report_input.mix(HELIXFOLD3.out.pdb_msa)
314+
ch_helixfold3_top_ranked_pdb = HELIXFOLD3.out.top_ranked_pdb
315+
ch_multiqc = ch_multiqc.mix(HELIXFOLD3.out.multiqc_report.collect())
316+
ch_versions = ch_versions.mix(HELIXFOLD3.out.versions)
317+
ch_report_input = ch_report_input.mix(HELIXFOLD3.out.pdb_msa)
318318
}
319319

320320
//

modules/local/run_helixfold3/main.nf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
*/
44
process RUN_HELIXFOLD3 {
55
tag "$meta.id"
6-
label 'gpu_compute'
76
label 'process_medium'
87

98
// Exit if running this module with -profile conda / -profile mamba

subworkflows/local/prepare_helixfold3_dbs.nf

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -133,17 +133,17 @@ workflow PREPARE_HELIXFOLD3_DBS {
133133
}
134134

135135
emit:
136-
helixfold3_uniclust30 = ch_helixfold3_uniclust30
137-
helixfold3_ccd_preprocessed = ch_helixfold3_ccd_preprocessed
138-
helixfold3_rfam = ch_helixfold3_rfam
139-
helixfold3_bfd = ch_helixfold3_bfd
140-
helixfold3_small_bfd = ch_helixfold3_small_bfd
141-
helixfold3_uniprot = ch_helixfold3_uniprot
142-
helixfold3_pdb_seqres = ch_helixfold3_pdb_seqres
143-
helixfold3_uniref90 = ch_helixfold3_uniref90
144-
helixfold3_mgnify = ch_helixfold3_mgnify
145-
helixfold3_pdb_mmcif = ch_helixfold3_pdb_mmcif
146-
helixfold3_init_models = ch_helixfold3_init_models
147-
helixfold3_maxit_src = ch_helixfold3_maxit_src
148-
versions = ch_versions
136+
helixfold3_uniclust30 = ch_helixfold3_uniclust30
137+
helixfold3_ccd_preprocessed = ch_helixfold3_ccd_preprocessed
138+
helixfold3_rfam = ch_helixfold3_rfam
139+
helixfold3_bfd = ch_helixfold3_bfd
140+
helixfold3_small_bfd = ch_helixfold3_small_bfd
141+
helixfold3_uniprot = ch_helixfold3_uniprot
142+
helixfold3_pdb_seqres = ch_helixfold3_pdb_seqres
143+
helixfold3_uniref90 = ch_helixfold3_uniref90
144+
helixfold3_mgnify = ch_helixfold3_mgnify
145+
helixfold3_pdb_mmcif = ch_helixfold3_pdb_mmcif
146+
helixfold3_init_models = ch_helixfold3_init_models
147+
helixfold3_maxit_src = ch_helixfold3_maxit_src
148+
versions = ch_versions
149149
}

workflows/helixfold3.nf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//
88
// MODULE: Loaded from modules/local/
99
//
10-
include { RUN_HELIXFOLD3 } from '../modules/local/run_helixfold3'
10+
include { RUN_HELIXFOLD3 } from '../modules/local/run_helixfold3'
1111

1212
/*
1313
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -40,11 +40,11 @@ workflow HELIXFOLD3 {
4040
ch_helixfold3_maxit_src
4141

4242
main:
43-
ch_multiqc_files = Channel.empty()
44-
ch_pdb = Channel.empty()
45-
ch_top_ranked_pdb = Channel.empty()
46-
ch_msa = Channel.empty()
47-
ch_multiqc_report = Channel.empty()
43+
ch_multiqc_files = Channel.empty()
44+
ch_pdb = Channel.empty()
45+
ch_top_ranked_pdb = Channel.empty()
46+
ch_msa = Channel.empty()
47+
ch_multiqc_report = Channel.empty()
4848

4949
//
5050
// SUBWORKFLOW: Run helixfold3

0 commit comments

Comments
 (0)