Home   Package List   Routine Alphabetical List   Global Alphabetical List   FileMan Files List   FileMan Sub-Files List   Package Component Lists   Package-Namespace Mapping  
Routine: BLREXEC2

BLREXEC2.m

Go to the documentation of this file.
  1. BLREXEC2 ;IHS/OIT/MKK - IHS MDRD STUDY EQUATION EXECUTE CODES ; 22-Oct-2013 09:22 ; MKK
  1. ;;5.2;IHS LABORATORY;**1025,1026,1033**;NOV 01, 1997
  1. ;
  1. ; Cloned from BLREXECU
  1. ;
  1. ; There are a total of four MDRD Study Equation tests in this file.
  1. ;
  1. ; Two are NON IDMS-Traceable MDRD Study Equation tests.
  1. ; Two are IDMS-Traceable MDRD Study Equation tests.
  1. ;
  1. ; Equations are from the National Kidney Disease website:
  1. ; www.nkdep.nih.gov/resources
  1. ;
  1. ; IDMS-Traceable MDRD Study Equation 1 -- Conventional Units
  1. GFRSE1CU(CRET) ; EP
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("GFRSE1CU^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("GFRSE1CU^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. ;
  1. S %X=$$CHKERRS ; Check for Errors
  1. I %X'="OK" Q %X ; If NOT OK, quit with error
  1. ;
  1. NEW CONSTA,CRETEXP,AGEEXP,SEXFACTR,RACEFACT
  1. D SETVARS1 ; Setup constants & exponents
  1. ;
  1. S %X=CONSTA*(CRET**CRETEXP)*(AGE**AGEEXP)*$G(SEXFACTR)*$G(RACEFACT)
  1. ;
  1. S %X=$TR($FN(%X,"",0)," ") ;ROUND RESULT
  1. ;
  1. ; See www.nkdep.nih.gov/resources/laboratory_reporting.htm
  1. I %X>60 S %X=">60"
  1. ;
  1. Q %X
  1. ;
  1. CHKERRS() ; EP
  1. N BLRERR
  1. S BLRERR="N/A"
  1. ;
  1. I $TR($G(CRET)," ")="" Q BLRERR ; If creatinine null, then quit
  1. ;
  1. ; If 1st character not numeric, then quit
  1. ; I $E($G(CRET))'?1N Q BLRERR
  1. I $G(CRET)?1A.A S %X=BLRERR Q %X ; IHS/OIT/MKK - LR*5.2*1026
  1. ;
  1. ; Following lines added to handle errors sent by some instruments
  1. ; Quit if any are true
  1. I $E($G(CRET))="" Q BLRERR ; If Null
  1. I $E($G(CRET))="#" Q BLRERR ; Out of Range
  1. I $E($G(CRET))="<" Q BLRERR ; Vitros results with "<"
  1. I ($G(CRET))="-" Q BLRERR ; Negative results
  1. ;
  1. I +$G(CRET)=0 Q BLRERR ; If zero results, then quit
  1. ;
  1. I AGE["DYS"!(AGE["MOS")!(AGE<17) Q BLRERR ; 16 & younger not done, quit
  1. ;
  1. I SEX="" Q BLRERR ; Cannot calculate without SEX
  1. ;
  1. Q "OK"
  1. ;
  1. SETVARS1 ; EP
  1. ;CONSTANTS, EXPONENTS
  1. S SEXFACTR=$S(SEX="M":1,1:.742) ; Sex Factor
  1. ;
  1. S RACEFACT=$S($$RACE(DFN)="B":1.21,1:1)
  1. ;
  1. S CONSTA=186 ; CONSTANT A
  1. S CRETEXP=-1.154 ; CREATININE EXPONENT
  1. S AGEEXP=-.203 ; AGE EXPONENT
  1. ;
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("SETVARS1^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("SETVARS1^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. Q
  1. ;
  1. ; Race of patient: defined as black or non-black
  1. RACE(DFN) ; EP
  1. NEW RACEPTR,RACEENT
  1. ;
  1. S RACEPTR=$P($G(^DPT(+$G(DFN),0)),U,6)
  1. Q:RACEPTR="" "N" ; If no entry, consider non-black
  1. ;
  1. S RACEENT=$P($G(^DIC(10,RACEPTR,0)),U)
  1. Q:RACEENT[("BLACK") "B" ; If RACEENT contains BLACK => race = Black
  1. Q "N" ; otherwise, non-black
  1. ;
  1. ; IDMS-Traceable MDRD Study Equation 1 -- SI Units
  1. GFRSE1SI(CRET) ; EP
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("GFRSE1SI^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("GFRSE1SI^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. Q:$G(CRET)="" "" ; If creatinine null, then quit
  1. ;
  1. S %X=$$CHKERRS ; Check for Errors
  1. I %X'="OK" Q %X ; If NOT OK, quit with error
  1. ;
  1. NEW CONSTA,CRETEXP,AGEEXP,SEXFACTR,RACEFACT
  1. D SETVARS1 ; Setup constants & exponents
  1. ;
  1. S %X=CONSTA*((CRET/88.4)**CRETEXP)*(AGE**AGEEXP)*$G(SEXFACTR)*$G(RACEFACT)
  1. ;
  1. S %X=$TR($FN(%X,"",0)," ") ;ROUND RESULT
  1. ;
  1. ; See www.nkdep.nih.gov/resources/laboratory_reporting.htm
  1. I %X>60 S %X=">60"
  1. ;
  1. Q %X
  1. ;
  1. ; IDMS-Traceable MDRD Study Equation 2 -- Conventional units
  1. ; GFRSE2CU ; EP
  1. GFRSE2CU(CRET) ; EP -- Added paramater -- IHS/OIT/MKK - LR*5.2*1026
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("GFRSE2CU^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("GFRSE2CU^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. Q:$G(CRET)="" "" ; If creatinine null, then quit
  1. ;
  1. S %X=$$CHKERRS ; Check for Errors
  1. I %X'="OK" Q %X ; If NOT OK, quit with error
  1. ;
  1. NEW CONSTA,CRETEXP,AGEEXP,SEXFACTR,RACEFACT
  1. D SETVARS2 ; Setup constants & exponents
  1. ;
  1. S %X=CONSTA*(CRET**CRETEXP)*(AGE**AGEEXP)*$G(SEXFACTR)*$G(RACEFACT)
  1. ;
  1. S %X=$TR($FN(%X,"",0)," ") ;ROUND RESULT
  1. ;
  1. ; See www.nkdep.nih.gov/resources/laboratory_reporting.htm
  1. I %X>60 S %X=">60"
  1. ;
  1. Q %X
  1. ;
  1. SETVARS2 ; EP
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("SETVARS2^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("SETVARS2^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. ;CONSTANTS, EXPONENTS
  1. S SEXFACTR=$S($G(SEX)="M":1,1:.742) ; Sex Factor
  1. ;
  1. S RACEFACT=$S($$RACE($G(DFN))="B":1.21,1:1)
  1. ;
  1. S CONSTA=175 ; CONSTANT A
  1. S CRETEXP=-1.154 ; CREATININE EXPONENT
  1. S AGEEXP=-.203 ; AGE EXPONENT
  1. ;
  1. Q
  1. ;
  1. ; IDMS-Traceable MDRD Study Equation 2 -- SI units
  1. ; GFRSE2SI ; EP
  1. GFRSE2SI(CRET) ; EP -- Added paramater -- IHS/OIT/MKK - LR*5.2*1026
  1. ; D:$G(SNAPSHOT) ENTRYAUD^BLRUTIL("GFRSE2SI^BLREXEC2")
  1. D ENTRYAUD^BLRUTIL("GFRSE2SI^BLREXEC2") ; IHS/OIT/MKK - LR*5.2*1033
  1. Q:$G(CRET)="" "" ; If creatinine null, then quit
  1. ;
  1. S %X=$$CHKERRS ; Check for Errors
  1. I %X'="OK" Q %X ; If NOT OK, quit with error
  1. ;
  1. NEW CONSTA,CRETEXP,AGEEXP,SEXFACTR,RACEFACT
  1. D SETVARS2 ; Setup constants & exponents
  1. ;
  1. S %X=CONSTA*((CRET/88.4)**CRETEXP)*(AGE**AGEEXP)*$G(SEXFACTR)*$G(RACEFACT)
  1. ;
  1. S %X=$TR($FN(%X,"",0)," ") ;ROUND RESULT
  1. ;
  1. ; See www.nkdep.nih.gov/resources/laboratory_reporting.htm
  1. I %X>60 S %X=">60"
  1. ;
  1. Q %X
  1. ;
  1. ; Get the Data Name of the test
  1. GETDNAM(NAME) ; EP
  1. S DNAME=$O(^DD(63.04,"B",NAME,0))
  1. Q:DNAME="" "NULL"
  1. Q DNAME