Skip to content

Commit

Permalink
Update taxtriage.nf
Browse files Browse the repository at this point in the history
  • Loading branch information
Merritt-Brian authored Dec 13, 2023
1 parent 883f85c commit f2b66fb
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions workflows/taxtriage.nf
Original file line number Diff line number Diff line change
Expand Up @@ -431,14 +431,16 @@ workflow TAXTRIAGE {
ch_joined_confidence_report = KRAKEN2_KRAKEN2.out.report.join(
CONFIDENCE_METRIC.out.tsv
)
CONVERT_CONFIDENCE (
ch_joined_confidence_report
)

MERGE_CONFIDENCE(
CONVERT_CONFIDENCE.out.tsv.map { file -> file }.collect()
)
ch_mergedtsv = MERGE_CONFIDENCE.out.confidence_report
if(!params.skip_confidence){
CONVERT_CONFIDENCE (
ch_joined_confidence_report
)

MERGE_CONFIDENCE(
CONVERT_CONFIDENCE.out.tsv.map { file -> file }.collect()
)
ch_mergedtsv = MERGE_CONFIDENCE.out.confidence_report
}

}

Expand Down

0 comments on commit f2b66fb

Please sign in to comment.