Skip to content

Commit

Permalink
Patch calculate amount script for TWIST (#445)(patch)
Browse files Browse the repository at this point in the history
### Fixed
- Updated the source type names for cell free DNA
  • Loading branch information
Karl-Svard authored Nov 2, 2023
1 parent 7100b9f commit 134293c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cg_lims/EPPs/udf/calculate/twist_qc_amount.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def get_qc(source: str, conc: float, amount: float) -> str:

qc = "FAILED"

if source == "cfDNA":
if source == "cell-free DNA" or source == "cfDNA":
if amount >= 10 and conc <= 250 and conc >= 0.2:
qc = "PASSED"
else:
Expand Down

0 comments on commit 134293c

Please sign in to comment.