Skip to content

Commit

Permalink
add sourmash out channel handling
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Sep 11, 2024
1 parent ba53fc3 commit c405fb0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion workflows/bacannot.nf
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ workflow BACANNOT {
params.sourmash_scale,
params.sourmash_kmer
)

ch_sourmash_plot = SOURMASH_ALL.out.plot.first()
} else {
ch_sourmash_plot = []
}

//
Expand Down Expand Up @@ -419,7 +423,7 @@ workflow BACANNOT {
.join( phast_output_ch, remainder: true )
.join( MERGE_ANNOTATIONS.out.digis_gff )
.join( ch_integron_finder_gff, remainder: true ),
SOURMASH_ALL.out.plot.first() // make value channel
ch_sourmash_plot
)

//
Expand Down

0 comments on commit c405fb0

Please sign in to comment.