Skip to content

Commit

Permalink
Fix annotation channel structure
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Nov 21, 2023
1 parent b04040e commit 41b8d96
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/circrna_discovery.nf
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ workflow CIRCRNA_DISCOVERY {

SPLIT_ANNOTATION( REMOVE_HEADER.out.output, "tsv", "tsv" )

ANNOTATION( SPLIT_ANNOTATION.out.split_csv
.map{ meta, file -> [[id: file.simpleName.split("-")[1]], file] },
ANNOTATION( SPLIT_ANNOTATION.out.split_csv.map{meta, files -> files }.flatten()
.map{ file -> [[id: file.simpleName.split("-")[1]], file] },
gtf, ch_biotypes.collect(),
exon_boundary
)
Expand Down

0 comments on commit 41b8d96

Please sign in to comment.