Skip to content

Commit

Permalink
update QC pass display
Browse files Browse the repository at this point in the history
  • Loading branch information
bridgetknight committed May 23, 2024
1 parent 80ddbf4 commit 82073a7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docker/lr-malaria-reports/report-files/report_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,10 @@ def create_report(sample, analysis, fastQC):
arg_dict['aligned_read_length_median'], arg_dict['read_qual_median']]

qc_pass = arg_dict["qc_pass"]
if (qc_pass == "true"):
qc_pass = "PASS"
elif (qc_pass == "false"):
qc_pass = "FAIL"

# Check if drug resistance report is provided
if not arg_dict['drug_resistance_text'] or arg_dict['drug_resistance_text'] == "None":
Expand Down

0 comments on commit 82073a7

Please sign in to comment.