edits.seer.internal.rules.IF361.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="IF361" name="CS SSF 1, Upper GI Schemas (CS)" tag="N1545" java-path="lines.line" category="inter-field" depends="Behavior_Code_ICD-O-3,CS_Lymph_Nodes,CS_Site-Specific_Factor_1,CS_Site-Specific_Factor_25,Histologic_Type_ICD-O-3,Primary_Site,Regional_Nodes_Positive"> <expression><![CDATA[if (line.csSiteSpecificFactor1 == null || line.csSiteSpecificFactor1 == '988'|| line.csLymphNodes == null || line.regionalNodesPositive == null || line.behaviorCodeIcdO3 == '0' || line.behaviorCodeIcdO3 == '1' || line._csSchemaId == null) return true if (['esophagus','esophagus_gejunction','stomach','net_stomach'].contains(line._csSchemaId)) { if (line.csSiteSpecificFactor1 == '000' && line.regionalNodesPositive == '00') return line.csLymphNodes == '000' if (Functions.matches(line.csSiteSpecificFactor1, /^([123]\d\d)|(400)$/) && line.regionalNodesPositive == '98') return line.csLymphNodes != '000' } return true]]></expression> <message>CS SSF1 conflicts for Upper GI Schemas</message> <description><![CDATA[This edit verifies that for cases coded using the Upper GI schemas (Esophagus, EsophagusGEJunction, Stomach, and NETStomach), CS Site-Specific Factor 1 (Clinical Assessment of Regional Lymph Nodes), Regional Nodes Positive, and CS Lymph Nodes are coded consistently. This edit is skipped if any of the following conditions are true: 1. CS Site-Specific Factor 1 is blank or 988 2. CS Lymph Nodes is blank 3. Regional Nodes Positive is blank 4. Behavior Code ICD-O-3 = 0 (benign) or 1 (borderline) 5. CS schema is invalid This edit first determines the CS schema by doing a function call to the CS Dynamic Link Library (dll). The function call passes Primary Site, Histologic Type ICD-O-3, and CS Site-Specific Factor25 (schema discriminator) to the dll and the CS schema name is returned. If CS schema is Esophagus, EsophagusGEJunction, Stomach, or NETStomach: 1. If CS Site-Specific Factor 1 = 000 (nodes not clinically evident) and Regional Nodes Positive = 00 (negative nodes pathologically), then CS Lymph Nodes must = 000 (none). 2. If CS Site-Specific Factor 1 = 100-400 (positive nodes clinically) and Regional Nodes Positive = 98 (no nodes examined), then CS Lymph Nodes must not = 000 (none).]]></description> <history> <event version="SE12-005-01" user="murphyr" date="2011-08-01" ref="66475">Edit created.</event> <event version="SE13-009-01" user="murphyr" date="2013-01-25" ref="66826">Edit name changed.</event> <event version="SE16-015-01" user="kirbyk" date="2016-05-04" ref="67370">Changed edit to use schema IDs instead of schema names</event> <event version="SE16-016-08" user="depryf" date="2017-11-22" ref="67674">Edit syntax updated to allow pre-compilation optimization; no change in behavior.</event> <event version="SE18-020-01" user="depryf" date="2020-02-04" ref="68281">Changed property names to align with NAACCR XML IDs.</event> </history> </rule>
© 2015 - 2024 Weber Informatics LLC | Privacy Policy