File tree Expand file tree Collapse file tree
modules/local/mmseqs_colabfoldsearch Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -456,7 +456,6 @@ workflow NFCORE_PROTEINFOLD {
456456 ch_versions,
457457 PREPARE_BOLTZ_DBS . out. boltz_ccd,
458458 PREPARE_BOLTZ_DBS . out. boltz_model,
459- PREPARE_COLABFOLD_DBS . out. params,
460459 PREPARE_COLABFOLD_DBS . out. colabfold_db,
461460 PREPARE_COLABFOLD_DBS . out. uniref30,
462461 params. boltz_use_msa_server
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ process MMSEQS_COLABFOLDSEARCH {
66
77 input:
88 tuple val(meta), path(fasta)
9- path (' db/params' )
109 path colabfold_db
1110 path uniref30
1211
@@ -26,6 +25,7 @@ process MMSEQS_COLABFOLDSEARCH {
2625 def VERSION = ' 1.5.2' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions.
2726
2827 """
28+ mkdir ./db
2929 ln -r -s $uniref30 /uniref30_* ./db
3030 ln -r -s $colabfold_db /colabfold_envdb* ./db
3131
Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ workflow BOLTZ {
4848 ch_versions // channel: [ path(versions.yml) ]
4949 ch_boltz_ccd // channel: [ path(boltz_ccd) ]
5050 ch_boltz_model // channel: [ path(model) ]
51- ch_colabfold_params // channel: [ path(colabfold_params) ]
5251 ch_colabfold_db // channel: [ path(colabfold_db) ]
5352 ch_uniref30 // channel: [ path(uniref30) ]
5453 msa_server
@@ -76,7 +75,6 @@ workflow BOLTZ {
7675
7776 MMSEQS_COLABFOLDSEARCH (
7877 ch_input. monomer. mix(MULTIFASTA_TO_CSV . out. input_csv),
79- ch_colabfold_params,
8078 ch_colabfold_db,
8179 ch_uniref30
8280 )
Original file line number Diff line number Diff line change @@ -78,15 +78,13 @@ workflow COLABFOLD {
7878 ch_versions = ch_versions. mix(MULTIFASTA_TO_CSV . out. versions)
7979 MMSEQS_COLABFOLDSEARCH (
8080 MULTIFASTA_TO_CSV . out. input_csv,
81- ch_colabfold_params,
8281 ch_colabfold_db,
8382 ch_uniref30
8483 )
8584 ch_versions = ch_versions. mix(MMSEQS_COLABFOLDSEARCH . out. versions)
8685 } else {
8786 MMSEQS_COLABFOLDSEARCH (
8887 ch_samplesheet,
89- ch_colabfold_params,
9088 ch_colabfold_db,
9189 ch_uniref30
9290 )
You can’t perform that action at this time.
0 commit comments