decrease the lower bound for PDR
This commit is contained in:
@@ -471,9 +471,9 @@ class HemoCubeFragment : Fragment() {
|
||||
private fun findResult(calculatedRatio: Double?): String {
|
||||
try {
|
||||
if (calculatedRatio != null) {
|
||||
if (calculatedRatio < 0.085)
|
||||
if (calculatedRatio < 0.05)
|
||||
return "Inconclusive. Very low Absorbance - Repeat test with Higher Blood Volume"
|
||||
if (calculatedRatio in 0.085..0.155)
|
||||
if (calculatedRatio in 0.05..0.155)
|
||||
return "Normal"
|
||||
if (calculatedRatio in 0.155..0.175)
|
||||
return "Negative Borderline. Repeat Test"
|
||||
|
||||
Reference in New Issue
Block a user