All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edits.seer.internal.rules.IF425.xml Maven / Gradle / Ivy

There is a newer version: 024-13
Show newest version
        <rule id="IF425" name="CS SSF 2, Lymph Nodes, Bladder (CS)" tag="N1749" 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">
            <expression><![CDATA[if (line.csSiteSpecificFactor2 == null ||
    line.csLymphNodes == null ||
    line.csSiteSpecificFactor2 == '988')
    return true

if (line.behaviorCodeIcdO3 == '0' || line.behaviorCodeIcdO3 == '1')
    return true

if (line._csSchemaId != 'bladder')
    return true

Integer ssf2Int = Functions.asInt(line.csSiteSpecificFactor2)
Integer lnInt = Functions.asInt(line.csLymphNodes)

if (ssf2Int == 0 && lnInt != 0 && lnInt != 999)
    return false
if (lnInt == 0 && ssf2Int != 0 && ssf2Int != 999)
    return false

if ((ssf2Int >= 1 && ssf2Int <= 980) || (ssf2Int >= 990 && ssf2Int <= 997)) {
    if (lnInt != 150 && lnInt != 250 && !(lnInt >= 350 && lnInt <= 450) &&
        lnInt != 505 && lnInt != 800)
        return false
}
if (lnInt == 999) {
    if (ssf2Int != 0 && ssf2Int != 999)
        return false
}

return true]]></expression>
            <message>CS Site-Specific Factor 2 and CS Lymph Nodes are not coded consistently for Bladder</message>
            <description><![CDATA[This edit verifies that for cases coded using the Bladder schema, CS Site-Specific Factor 2 (size of metastasis in lymph nodes) and CS Lymph Nodes are coded consistently.

If CS schema = Bladder:

1. If CS Site-Specific Factor 2 = 000 (no regional lymph node involvement), then CS Lymph Nodes must = 000 (no regional lymph node involvement) or 999 (unknown).

   The vice versa condition is also true:
   If CS Lymph Nodes = 000, then CS Site-Specific Factor 2 must = 000 or 999.

2. If CS Site-Specific Factor 2 = 001-980, 990-997 (regional lymph node involvement), then CS Lymph Nodes must = 150, 250, 350-450, 505, 800 (regional lymph node involvement).

3. If CS Lymph Nodes = 999 (unknown if nodes involved), then CS Site-Specific Factor 2 must = 000 (no regional lymph nodes involved) or 999 (unknown if nodes involved).

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. Behavior Code ICD-O-3 = 0 (benign) or 1 (borderline)
4. 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.]]></description>
            <history>
                <event version="SE13-009-01" user="murphyr" date="2012-12-05" ref="66774">Edit created.</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