edits.seer.internal.rules.IFN6108.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation-edits-seer Show documentation
Show all versions of validation-edits-seer Show documentation
Java implemenation of the SEER edits.
<rule id="IFN6108" name="Extranodal Extension Path (non-Head and Neck), Reg Nodes Positive (NAACCR)" tag="N6108" java-path="lines.line" category="inter-field" depends="Year_of_Diagnosis"> <expression><![CDATA[if (line.dateOfDiagnosisYear == null || line.dateOfDiagnosisYear < '2019') return true if (line.extranodalExtensionPath == null || line.extranodalExtensionPath == '8') return true if ((line.schemaId != '00460' && line.schemaId != '00570') || line.regionalNodesPositive == null) return true String extPath = line.extranodalExtensionPath String positiveNodes = line.regionalNodesPositive if ((extPath == '0' || extPath == '1') && (positiveNodes == '00' || positiveNodes == '98')) return false if (positiveNodes == '00' && extPath != '7' && extPath != '9') return false if (positiveNodes == '98' && extPath != '9') return false return true]]></expression> <message>Regional Nodes Positive and Regional Nodes Examined conflict with Extranodal Extension Path (non-Head and Neck)</message> <description><![CDATA[This edit verifies consistent coding between Extranodal Extension Path (non-Head and Neck) and Regional Nodes Positive, Regional Nodes Examined. 1. The edit is skipped for any of the following conditions: a. Date of Diagnosis is pre-2019, blank (unknown), or invalid. b. Schema ID is not 00460, 00570 c. Extranodal Extension Path (non-Head and Neck) is blank or 8 d. Regional Nodes Positive is blank Extranodal Extension Path (non-Head and Neck) is required by SEER only if collected by a CoC-accredited facility on an analytic case (CoC Accredited Flag = 1). 2. If Extranodal Extension Path (non-Head and Neck) = 0 or 1 (positive nodal involvement), Regional Nodes Positive must not = 00 or 98. 3. If Regional Nodes Positive = 00, Extranodal Extension Path (non-Head and Neck) must = 7 (surgically resected regional lymph nodes negative for cancer) or 9 (no surgical resection of lymph nodes). 4. If Regional Nodes Positive = 98, Extranodal Extension Path (non-Head and Neck) must = 9 (no surgical resection of regional lymph nodes)]]></description> <history> <event version="SE22-022-05" user="secristc" date="2022-05-04" ref="68938">Edit created.</event> </history> </rule>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy