Skip to content

Commit

Permalink
date_pipeline_ran no longer constantly overwritten
Browse files Browse the repository at this point in the history
  • Loading branch information
aofarrel committed Jan 22, 2025
1 parent 8bd57e1 commit 158e82d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion myco_raw.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ workflow myco {
input {
Array[Array[File]] paired_fastq_sets
String date_pipeline_ran
String? date_pipeline_previously_ran

String? output_sample_name
Boolean guardrail_mode = true
Expand Down Expand Up @@ -380,7 +381,7 @@ workflow myco {
output {
String tbd_status = select_first([finalcode, pass])
String tbd_pipeline_run = date_pipeline_ran
String tbd_pipeline_run = select_first([date_pipeline_previously_ran, date_pipeline_ran])

# decon/fastp metadata pulled out directly
Float tbd_qc_q20_in = decontam_each_sample.q20_in[0]
Expand Down

0 comments on commit 158e82d

Please sign in to comment.