Skip to content

Commit

Permalink
Fix reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
luisas committed Sep 29, 2023
1 parent dd77450 commit f202197
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions subworkflows/local/compute_trees.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@ include { CLUSTALO_GUIDETREE } from '../../modules/nf-core/clustalo/guidetree/ma
//

// Branch each guide tree rendering into a separate channel
ch_fastas_fortrees = ch_fastas.combine(tree_tools)
.map( it -> [it[0] + it[2], it[1]] )
.branch{
famsa: it[0]["tree"] == "FAMSA"
clustalo: it[0]["tree"] == "CLUSTALO"
}
ch_fastas_fortrees = ch_fastas
.combine(tree_tools)
.map( it -> [it[0] + it[2], it[1]] )
.branch{
famsa: it[0]["tree"] == "FAMSA"
clustalo: it[0]["tree"] == "CLUSTALO"
}


FAMSA_GUIDETREE(ch_fastas_fortrees.famsa)
Expand Down

0 comments on commit f202197

Please sign in to comment.