Skip to content

Commit 964a5d4

Browse files
committed
Fix to eggnog tuples
1 parent a322857 commit 964a5d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

subworkflows/annotate_eukaryotes.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ workflow ANNOTATE_EUKARYOTES {
2222

2323
EGGNOG_MAPPER_ORTHOLOGS_PER_GENOME(
2424
cluster_reps_faas,
25-
tuple("empty", "NO_FILE"),
25+
cluster_reps_faas.map { tuple(it[0], "NO_FILE") }, // use the cluster rep names in position 0 of tuple to have correct names
2626
channel.value('mapper'),
2727
eggnog_db,
2828
eggnog_diamond_db,
2929
eggnog_data_dir
3030
)
3131

3232
EGGNOG_MAPPER_ANNOTATIONS_PER_GENOME(
33-
tuple("empty", "NO_FILE"),
33+
cluster_reps_faas.map { tuple(it[0], "NO_FILE") }, // use the cluster rep names in position 0 of tuple to have correct names
3434
EGGNOG_MAPPER_ORTHOLOGS_PER_GENOME.out.orthologs,
3535
channel.value('annotations'),
3636
eggnog_db,

0 commit comments

Comments
 (0)