File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -8,17 +8,17 @@ process EGGNOG_MAPPER {
8
8
9
9
input:
10
10
// on mode "annotations" will be ignored, submit an empty path (channel.path("NO_FILE"))
11
- tuple val(id ), file(fasta)
11
+ tuple val(id_fasta ), file(fasta)
12
12
// on mode "mapper" will be ignored, submit an empty path (channel.path("NO_FILE"))
13
- tuple val(id ), file(annotation_hit_table)
13
+ tuple val(id_annot ), file(annotation_hit_table)
14
14
val mode // mapper or annotations
15
15
path eggnog_db
16
16
path eggnog_diamond_db
17
17
path eggnog_data_dir
18
18
19
19
output:
20
- tuple val(id ), path (" *annotations*" ), emit: annotations, optional: true
21
- tuple val(id ), path (" *orthologs*" ), emit: orthologs, optional: true
20
+ tuple val(id_annot ), path (" *annotations*" ), emit: annotations, optional: true
21
+ tuple val(id_fasta ), path (" *orthologs*" ), emit: orthologs, optional: true
22
22
23
23
script:
24
24
if ( mode == " mapper" )
You can’t perform that action at this time.
0 commit comments