Skip to content

Commit c524450

Browse files
authored
Merge pull request nf-core#318 from ziadbkh/dev
remove unused input for mmseq
2 parents e7f6a89 + ce87d13 commit c524450

4 files changed

Lines changed: 1 addition & 6 deletions

File tree

main.nf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

modules/local/mmseqs_colabfoldsearch/main.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

workflows/boltz.nf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)

workflows/colabfold.nf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)