Skip to content

Commit

Permalink
Include the version of barcode on date run
Browse files Browse the repository at this point in the history
  • Loading branch information
Jessica Caleta - Genomics Liaison Technical Officer - NML/BCCDC committed Jul 20, 2023
1 parent d00a856 commit ce9c4c6
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions modules/effluent.nf
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,21 @@ process lineage_freyja {
//freyja demix --version > "${params.out_dir}/freyja_overall_lineage_summary/barcode_version.log"
}

process barcode_version {

tag "Recording Freyja barcode version used"
publishDir "${params.out_dir}/freyja_individual_lineage_summaries", mode: 'copy'

output:
file("*.log")

"""
echo \$(freyja demix --version) > \$(date +%Y%m%d)_barcode.log
"""

}

process summarize_freyja {

tag "Summarizing relative viral lineage abundances across all samples with Freyja"
Expand Down Expand Up @@ -146,6 +161,8 @@ workflow EFFLUENT {

}

barcode_version()

emit:
summarize_freyja.out

Expand Down

0 comments on commit ce9c4c6

Please sign in to comment.