You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SEER implementation of the Multiple Primary and Histology Coding Rules. The implementation combines Hematopoietic rules, SEER Multiple Primary and Histology Coding Rules. The rules used in the calculation are based on the diagnosis year and histology.
90
+
91
+
```java
92
+
MphInput input1 =newMphInput();
93
+
input1.setPrimarySite("C509");
94
+
input1.setHistologyIcdO3("8000");
95
+
input1.setBehaviorIcdO3("3");
96
+
input1.setDateOfDiagnosisYear("2016");
97
+
input1.setLaterality("1");
98
+
99
+
MphInput input2 =newMphInput();
100
+
input2.setPrimarySite("C501");
101
+
input2.setHistologyIcdO3("8000");
102
+
input2.setBehaviorIcdO3("3");
103
+
input2.setDateOfDiagnosisYear("2015");
104
+
input2.setLaterality("1");
105
+
106
+
MphResult result = api.mph(newMphInputPair(input1, input2)).execute().body();
107
+
```
108
+
87
109
### NAACCR (rest/naaccr)
88
110
89
111
The NAACCR API provides programmatic access to documentation for the NAACCR Standards for Cancer Registries Volume II. It includes
0 commit comments