Skip to content

Commit

Permalink
Include derive_species.nf in plot.nf workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
fedemantica committed Dec 5, 2024
1 parent 478ca53 commit 09c26df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion workflows/plot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ include { PLOT_EXINT } from "${LOCAL_MODULES}/plot.nf"
include { SELECT_SPECIES_WITH_ORTHOLOGS } from "${LOCAL_MODULES}/select_species.nf"
include { SUBSET_BEST_HITS } from "${LOCAL_MODULES}/subset_best.nf"
include { SUBSET_INPUT_FILES } from "${LOCAL_MODULES}/subset_input.nf"
include { DERIVE_ORDERED_SPECIES } from "${LOCAL_MODULES}/derive_species.nf"

workflow PLOT {
take:
Expand Down Expand Up @@ -141,7 +142,7 @@ workflow PLOT {
}
else {
all_species = Channel
.fromFilePairs(annotations, size: 1)
.fromFilePairs(annotations_path, size: 1)
.map{"${it[0]}".toString()}.flatMap().collect().map{it -> it.join(",")}

DERIVE_ORDERED_SPECIES(
Expand Down

0 comments on commit 09c26df

Please sign in to comment.