Skip to content

Commit

Permalink
Merge pull request #45 from broadinstitute/smartseq_qc_option
Browse files Browse the repository at this point in the history
Make Smartseq Report Upload Process Optional
  • Loading branch information
lfleming1022 authored Nov 3, 2023
2 parents ce71e74 + 04891e5 commit 048a4ba
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions SmartSeq/SC_Plate_QC/SC_Plate_QC.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ workflow SC_plate{
Array[File]+ rsem_list
Array[File]? adapt_list
Array[String]+ names
Boolean run_gsutil_cp = true
call graphPlate {
input:
Expand All @@ -43,9 +44,11 @@ workflow SC_plate{
names = names
}
call gsutil_cp{
input:
plate_qc_metrics = graphPlate.plate_qc_metrics
if(run_gsutil_cp){
call gsutil_cp{
input:
plate_qc_metrics = graphPlate.plate_qc_metrics
}
}
}

Expand Down

0 comments on commit 048a4ba

Please sign in to comment.