Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziad Al Bkhetan committed Oct 21, 2024
1 parent 175aa72 commit d7e92d7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ workflow NFCORE_PROTEINFOLD {
.filter{it[0]["model"] == "alphafold2"}
.map{[it[0]["id"], it[1]]}, remainder:true
)

)
}
if (requested_modes.contains("colabfold")) {
Expand All @@ -239,16 +238,16 @@ workflow NFCORE_PROTEINFOLD {
.main_pdb
.map{[it[0]["id"], it[0], it[1]]}
.join(COLABFOLD.out.msa
.map{[it[0]["id"], it[1]]},
.map{[it[0]["id"], it[1]]},
remainder:true
)
)
}
//ch_comparision_report_files.view()

ch_comparision_report_files
.groupTuple(by: [0], size: requested_modes.size())
.set{ch_comparision_report_input}

COMPARE_STRUCTURES(
ch_comparision_report_input.map{it[1][0]["model"] = params.mode.toLowerCase(); [it[1][0], it[2]]},
ch_comparision_report_input.map{it[1][0]["model"] = params.mode.toLowerCase(); [it[1][0], it[3]]},
Expand Down

0 comments on commit d7e92d7

Please sign in to comment.