edits.seer.internal.rules.IF369.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.
The newest version!
<rule id="IF369" name="CS SSF 2, Lower GI Schemas (CS)" tag="N1556" java-path="lines.line" category="inter-field" depends="Behavior_Code_ICD-O-3,CS_Lymph_Nodes,CS_Site-Specific_Factor_2,CS_Site-Specific_Factor_25,Histologic_Type_ICD-O-3,Primary_Site,Regional_Nodes_Positive"> <expression><![CDATA[if (line.csSiteSpecificFactor2 == null || line.csSiteSpecificFactor2 == '988' || line.csLymphNodes == null || line.regionalNodesPositive == null || line.behaviorCodeIcdO3 == '0' || line.behaviorCodeIcdO3 == '1' || line._csSchemaId == null) return true if (['small_intestine','appendix','carcinoid_appendix','colon','rectum','net_colon','net_rectum'].contains(line._csSchemaId)) { if (line.csSiteSpecificFactor2 == '000' && line.regionalNodesPositive == '00') return line.csLymphNodes == '000' || line.csLymphNodes == '050' if (Functions.matches(line.csSiteSpecificFactor2, /^(0[1-9]\d)|([1-3]\d\d)|(400)$/) && line.regionalNodesPositive == '98') return line.csLymphNodes != '000' } return true]]></expression> <message>CS SSF2 conflicts for Lower GI Schemas</message> <description><![CDATA[This edit verifies that for cases coded using the Lower GI schemas (SmallIntestine, Appendix, CarcinoidAppendix, Colon, Rectum, NETColon, and NETRectum), CS Site-Specific Factor 2 (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 2 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 SmallIntestine, Appendix, CarcinoidAppendix, Colon, Rectum, NETColon, or NETRectum: 1. If CS Site-Specific Factor 2 = 000 (nodes not clinically evident) and Regional Nodes Positive = 00 (negative nodes pathologically), then CS Lymph Nodes must = 000 (none) or 050 (tumor deposits without regional node metastasis). Note: CS Lymph Nodes code 050 is used only in Colon, Rectum, NETColon, and NETRectum schemas. 2. If CS Site-Specific Factor 2 = 010-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-02" ref="66483">Edit created.</event> <event version="SE12-005-08" user="murphyr" date="2011-12-14" ref="66561">Added code 050 for allowable lymph nodes</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>