Skip to content

Commit e49551a

Browse files
author
Ziad Al Bkhetan
committed
remove unused input for mmseq
1 parent f766d6c commit e49551a

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
@@ -383,7 +383,6 @@ workflow NFCORE_PROTEINFOLD {
383383
ch_versions,
384384
PREPARE_BOLTZ_DBS.out.boltz_ccd,
385385
PREPARE_BOLTZ_DBS.out.boltz_model,
386-
PREPARE_COLABFOLD_DBS.out.params,
387386
PREPARE_COLABFOLD_DBS.out.colabfold_db,
388387
PREPARE_COLABFOLD_DBS.out.uniref30,
389388
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
@@ -79,7 +78,6 @@ workflow BOLTZ {
7978

8079
MMSEQS_COLABFOLDSEARCH (
8180
ch_input.monomer.mix(MULTIFASTA_TO_CSV.out.input_csv),
82-
ch_colabfold_params,
8381
ch_colabfold_db,
8482
ch_uniref30
8583
)

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)