From 134293c41a10c3eb47301d13607345558475bfae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Sv=C3=A4rd?= <60181709+Karl-Svard@users.noreply.github.com> Date: Thu, 2 Nov 2023 13:24:30 +0100 Subject: [PATCH] Patch calculate amount script for TWIST (#445)(patch) ### Fixed - Updated the source type names for cell free DNA --- cg_lims/EPPs/udf/calculate/twist_qc_amount.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cg_lims/EPPs/udf/calculate/twist_qc_amount.py b/cg_lims/EPPs/udf/calculate/twist_qc_amount.py index 20186983..fd2da9bf 100644 --- a/cg_lims/EPPs/udf/calculate/twist_qc_amount.py +++ b/cg_lims/EPPs/udf/calculate/twist_qc_amount.py @@ -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: