You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description: Describe issue here!!!
We will receive more and more cfDNA samples and they have a lower limit for passing the amount-check than other sample sources, which is done in steps Quantit QC (DNA) TWIST v2 and Qubit QC (DNA) TWIST v2 when running the EPP "Calculate Amounts".
The lower limit for cfDNA is 10 ng (and 25 ng for other sources).
We want the script to also take into account the "Source" udf and make sure "cfDNA" has different QC limits
The text was updated successfully, but these errors were encountered:
Looks like this is already implemented in the script?
defget_qc(source: str, conc: float, amount: float) ->str:
"""QC-criteria depends on sample source, total amount and sample concentration. See AMS doc 1117, 1993 and 2125. The volume is subtracted by 3 in the calculations. This is beacause the lab uses 3 ul in the initial qc measurements. """qc="FAILED"ifsource=="cfDNA":
ifamount>=10andconc<=250andconc>=0.2:
qc="PASSED"else:
ifamount>=250andconc<=250andconc>=8.33:
qc="PASSED"returnqc
Or should we lower the threshold of normal samples from 250 to 25 ng?
The script did not work for some cfDNA samples this week, but I saw that the sample source for cfDNA is written as "cell-free DNA", so the script needs an update (looking at the previous comment from KSV)
Lims Issue
For definitions of headings below see Basic Concepts.
**Work Flow:**TWIST v7
Protocol: Initial QC TWIST v3
Step: Quantit QC (DNA) TWIST v2 and Qubit QC (DNA) TWIST v2
Description: Describe issue here!!!
We will receive more and more cfDNA samples and they have a lower limit for passing the amount-check than other sample sources, which is done in steps Quantit QC (DNA) TWIST v2 and Qubit QC (DNA) TWIST v2 when running the EPP "Calculate Amounts".
The lower limit for cfDNA is 10 ng (and 25 ng for other sources).
We want the script to also take into account the "Source" udf and make sure "cfDNA" has different QC limits
The text was updated successfully, but these errors were encountered: