Skip to content

Commit 3a1764a

Browse files
committed
Prepare for release
1 parent 836e220 commit 3a1764a

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ Download [the latest JAR][1] or grab via Maven:
3030
<dependency>
3131
<groupId>com.imsweb</groupId>
3232
<artifactId>seerapi-client-java</artifactId>
33-
<version>5.6</version>
33+
<version>5.7</version>
3434
</dependency>
3535
```
3636

3737
or via Gradle:
3838

3939
```
40-
compile 'com.imsweb:seerapi-client-java:5.6'
40+
compile 'com.imsweb:seerapi-client-java:5.7'
4141
```
4242

4343
## Usage
@@ -132,15 +132,17 @@ A searchable database for coding oncology drug and regimen treatment categories
132132
api.rx().getById("latest", "53c44b01102c1290262dc8b2").execute().body()
133133
```
134134

135-
### SEER Incidence Site Recode (rest/recode)
135+
### Site Recode (rest/recode)
136136

137-
The values of SEER site recode variables are based on the primary site and histology data fields submitted to SEER by the
138-
registries. The site recode variables define the major cancer site/histology groups that are commonly used in the reporting of
139-
cancer incidence data. For example, there is a section of the SEER Cancer Statistics Review for each major site corresponding to
140-
groupings in a site recode variable. The site recode variables are added to SEER databases as a convenience for researchers.
137+
The API supports three algorithms for recoding site: SEER site recode ("seer"), International Classification of Childhood Cancer Site Recode ("iccc"),
138+
and Adolescents and Young Adults Site Recode ("aya"). The values of SEER site recode variables are based on the primary site, histology and
139+
behavior data fields submitted to SEER by the registries. The site recode variables define the major cancer site/histology groups that
140+
are commonly used in the reporting of cancer incidence data. For example, there is a section of the SEER Cancer Statistics Review for
141+
each major site corresponding to groupings in a site recode variable. The site recode variables are added to SEER databases as a
142+
convenience for researchers.
141143

142144
```java
143-
api.siteRecode().siteGroup("C619", "8000").execute().body()
145+
api.siteRecode().siteGroup("seer", "C619", "8000", null).execute().body()
144146
```
145147

146148
### Site-specific Surgery Codes (rest/surgery)

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
group = 'com.imsweb'
16-
version = '5.6'
16+
version = '5.7'
1717
description = 'Java client library for SEER*API'
1818

1919
tasks.withType(JavaCompile).configureEach {

0 commit comments

Comments
 (0)