Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

**Changes in version 5.11 (not released yet)**

- Updated data for the EPH SubCountry algorithms and switched to the 2020 geographies; the three 2010 output variables were retired and replaced by 2020 variables.
- Updated data for the Persistence Poverty algorithm; added new variable based on 2020 geographies and added output value 2 (not available) in addition to the 0 and 1.
- Updated data for the Tract-Estimated Congressional Districts algorithm.
- Retired two Cancer Reporting Zone variables and replaced them on two sets of 2010/2020 variables all based on 2020 geographies.
- Updated neoadjuvTherapyTreatmentEffect lookups (added missing schemas 09210, 09350 and 09360).
- Updated the Yost/ACS algorithm to extend the second-to-last range of the "year for lookup" by one year and to implement the A,B,C,D codes that are found in other census tract lookups.
- Added 2023 calculated field for Rural Urban Continuum algorithm.
Expand Down
30 changes: 18 additions & 12 deletions src/main/java/com/imsweb/algorithms/Algorithms.java
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,17 @@ public final class Algorithms {
public static final String FIELD_ACS_POV_ASIAN_NHOPI = "acsPctPovAsianNHOPI";
public static final String FIELD_ACS_POV_WHITE_NON_HISP = "acsPctPovWhiteNonHisp";
public static final String FIELD_ACS_POV_HISP = "acsPctPovHispanic";
public static final String FIELD_EPHT_2010_GEOID_5K = "epht2010GeoId5k";
public static final String FIELD_EPHT_2010_GEOID_20K = "epht2010GeoId20k";
public static final String FIELD_EPHT_2010_GEOID_50K = "epht2010GeoId50k";
public static final String FIELD_EPHT_2020_GEOID_5K = "epht2020GeoId5k";
public static final String FIELD_EPHT_2020_GEOID_20K = "epht2020GeoId20k";
public static final String FIELD_EPHT_2020_GEOID_50K = "epht2020GeoId50k";
public static final String FIELD_TRACT_EST_CONGRESS_DIST_118 = "tractEstCongressDist118";
public static final String FIELD_TRACT_EST_CONGRESS_DIST_119 = "tractEstCongressDist119";
public static final String FIELD_CANCER_REPORTING_ZONE = "cancerReportingZone";
public static final String FIELD_CANCER_REPORTING_ZONE_TRACT_REQ = "cancerReportingZoneTractReq";
public static final String FIELD_PERSISTENT_POVERTY = "persistentPoverty";
public static final String FIELD_CANCER_RPT_ZONE_2010 = "cancerRptZone2010";
public static final String FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010 = "cancerRptZoneTractReq2010";
public static final String FIELD_CANCER_RPT_ZONE_2020 = "cancerRptZone2020";
public static final String FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020 = "cancerRptZoneTractReq2020";
public static final String FIELD_PERSISTENT_POVERTY_0711 = "perPov0711";
public static final String FIELD_PERSISTENT_POVERTY_1721 = "perPov1721";
public static final String FIELD_SEER_BRAIN_CSN_RECODE_2020 = "seerBrainCnsRecode2020";
public static final String FIELD_SEER_LYMPH_NEO_RECODE_2021 = "seerLymphNeoplasmRecode2021";
public static final String FIELD_DERIVED_SUMMARY_GRADE_2018 = "derivedSummaryGrade2018";
Expand Down Expand Up @@ -368,14 +371,17 @@ public static void initialize() {
addField(AlgorithmField.of(FIELD_ACS_POV_ASIAN_NHOPI, 9616, 6, "ACS Pct Poverty (2Asian/NHOPI)", "ACS Pov Asian/NHOPI", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_ACS_POV_WHITE_NON_HISP, 9618, 6, "ACS Pct Poverty (White, Non-Hispanic)", "ACS Pov Non-Hispanic", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_ACS_POV_HISP, 9619, 6, "ACS Pct Poverty (Hispanic)", "ACS Pov Hispanic", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2010_GEOID_5K, 9993, 11, "EPHT 2010 GEO ID 5K", "EPHT 5K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2010_GEOID_20K, 9994, 11, "EPHT 2010 GEO ID 20K", "EPHT 20K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2010_GEOID_50K, 9995, 11, "EPHT 2010 GEO ID 50K", "EPHT 50K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2020_GEOID_5K, 9996, 11, "EPHT 2010 GEO ID 5K", "EPHT 5K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2020_GEOID_20K, 9997, 11, "EPHT 2010 GEO ID 20K", "EPHT 20K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_EPHT_2020_GEOID_50K, 9998, 11, "EPHT 2010 GEO ID 50K", "EPHT 50K", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_TRACT_EST_CONGRESS_DIST_118, 9405, 4, "Tract-Estimated 118th Congressional District", "Tract-Est 118", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_TRACT_EST_CONGRESS_DIST_119, 9406, 4, "Tract-Estimated 119th Congressional District", "Tract-Est 119", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_REPORTING_ZONE, 9415, 10, "Cancer Reporting Zone", "Cancer Rpt Zone", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_REPORTING_ZONE_TRACT_REQ, 9416, 1, "Census Tract Required for Cancer Reporting Zone", "Cancer Rpt Zone Tract Cert", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_PERSISTENT_POVERTY, 9625, 1, "Persistence Poverty", "Persist Pov", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_RPT_ZONE_2010, 9435, 10, "Cancer Reporting Zone (2010 Defined)", "Cancer Rpt Zone 10", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010, 9436, 1, "Census Tract Req for Cancer Rpt Zone (2010 Def)", "Cancer Rpt Zone Tract Req 10", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_RPT_ZONE_2020, 9437, 10, "Cancer Reporting Zone (2020 Defined)", "Cancer Rpt Zone 20", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020, 9438, 1, "Census Tract Req for Cancer Rpt Zone (2020 Def)", "Cancer Rpt Zone Tract Req 20", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_PERSISTENT_POVERTY_0711, 9626, 1, "Persistent Poverty 2007-2011", "Persist Pov 07-11", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_PERSISTENT_POVERTY_1721, 9627, 1, "Persistent Poverty 2017-2021", "Persist Pov 17-21", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_SEER_BRAIN_CSN_RECODE_2020, 9455, 2, "SEER Brain/CNS Recode 2020", "Brain/CNS", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_SEER_LYMPH_NEO_RECODE_2021, 9450, 2, "SEER Lymphoid Neoplasm Recode 2021", "Lymph 21", DATA_LEVEL_TUMOR, false));
addField(AlgorithmField.of(FIELD_CDC_SVI_2018, 9600, 5, "CDC/ATSDR Social Vulnerability Index 2018", "CDC/ATSDR SVI 18", DATA_LEVEL_TUMOR, false));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@
import com.imsweb.algorithms.StateCountyTractInputDto;
import com.imsweb.algorithms.internal.Utils;

import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_REPORTING_ZONE;
import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_REPORTING_ZONE_TRACT_REQ;
import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_RPT_ZONE_2010;
import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_RPT_ZONE_2020;
import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010;
import static com.imsweb.algorithms.Algorithms.FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020;
import static com.imsweb.algorithms.Algorithms.FIELD_CENSUS_2010;
import static com.imsweb.algorithms.Algorithms.FIELD_COUNTY_AT_DX_ANALYSIS;
import static com.imsweb.algorithms.Algorithms.FIELD_STATE_DX;
Expand All @@ -31,11 +33,15 @@ public CancerReportingZoneAlgorithm() {
_inputFields.add(Algorithms.getField(FIELD_COUNTY_AT_DX_ANALYSIS));
_inputFields.add(Algorithms.getField(FIELD_CENSUS_2010));

_outputFields.add(Algorithms.getField(FIELD_CANCER_REPORTING_ZONE));
_outputFields.add(Algorithms.getField(FIELD_CANCER_REPORTING_ZONE_TRACT_REQ));
_outputFields.add(Algorithms.getField(FIELD_CANCER_RPT_ZONE_2010));
_outputFields.add(Algorithms.getField(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010));
_outputFields.add(Algorithms.getField(FIELD_CANCER_RPT_ZONE_2020));
_outputFields.add(Algorithms.getField(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020));

_unknownValues.put(FIELD_CANCER_REPORTING_ZONE, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
_unknownValues.put(FIELD_CANCER_REPORTING_ZONE_TRACT_REQ, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
_unknownValues.put(FIELD_CANCER_RPT_ZONE_2010, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
_unknownValues.put(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
_unknownValues.put(FIELD_CANCER_RPT_ZONE_2020, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
_unknownValues.put(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020, Arrays.asList(CANCER_REPORTING_ZONE_UNK_A, CANCER_REPORTING_ZONE_UNK_D));
}

@Override
Expand All @@ -48,8 +54,10 @@ public AlgorithmOutput execute(AlgorithmInput input) {
CancerReportingZoneOutputDto outputDto = CancerReportingZoneUtils.computeCancerReportingZone(inputDto);

Map<String, Object> outputTumor = new HashMap<>();
outputTumor.put(FIELD_CANCER_REPORTING_ZONE, outputDto.getCancerReportingZone());
outputTumor.put(FIELD_CANCER_REPORTING_ZONE_TRACT_REQ, outputDto.getCancerReportingZoneTractReq());
outputTumor.put(FIELD_CANCER_RPT_ZONE_2010, outputDto.getCancerReportingZone2010());
outputTumor.put(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2010, outputDto.getCancerReportingZoneTractReq2020());
outputTumor.put(FIELD_CANCER_RPT_ZONE_2020, outputDto.getCancerReportingZone2010());
outputTumor.put(FIELD_CANCER_RPT_ZONE_TRACT_REQ_2020, outputDto.getCancerReportingZoneTractReq2020());

Utils.addTumorOutput(outputPatient, outputTumor);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,43 @@

public class CancerReportingZoneOutputDto {

private String _cancerReportingZone;
private String _cancerReportingZone2010;

private String _cancerReportingZoneTractReq;
private String _cancerReportingZoneTractReq2010;

public String getCancerReportingZone() {
return _cancerReportingZone;
private String _cancerReportingZone2020;

private String _cancerReportingZoneTractReq2020;

public String getCancerReportingZone2010() {
return _cancerReportingZone2010;
}

public void setCancerReportingZone2010(String cancerReportingZone2010) {
_cancerReportingZone2010 = cancerReportingZone2010;
}

public String getCancerReportingZoneTractReq2010() {
return _cancerReportingZoneTractReq2010;
}

public void setCancerReportingZoneTractReq2010(String cancerReportingZoneTractReq2010) {
_cancerReportingZoneTractReq2010 = cancerReportingZoneTractReq2010;
}

public String getCancerReportingZone2020() {
return _cancerReportingZone2020;
}

public void setCancerReportingZone(String cancerReportingZone) {
_cancerReportingZone = cancerReportingZone;
public void setCancerReportingZone2020(String cancerReportingZone2020) {
_cancerReportingZone2020 = cancerReportingZone2020;
}

public String getCancerReportingZoneTractReq() {
return _cancerReportingZoneTractReq;
public String getCancerReportingZoneTractReq2020() {
return _cancerReportingZoneTractReq2020;
}

public void setCancerReportingZoneTractReq(String cancerReportingZoneTractReq) {
_cancerReportingZoneTractReq = cancerReportingZoneTractReq;
public void setCancerReportingZoneTractReq2020(String cancerReportingZoneTractReq2020) {
_cancerReportingZoneTractReq2020 = cancerReportingZoneTractReq2020;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public final class CancerReportingZoneUtils {

public static final String ALG_NAME = "NAACCR Cancer Reporting Zones";
public static final String ALG_VERSION = "version 1.0 released in August 2021";
public static final String ALG_VERSION = "August 21, 2026";

//Unknown values for each code
public static final String CANCER_REPORTING_ZONE_UNK_A = "A";
Expand All @@ -30,11 +30,11 @@ private CancerReportingZoneUtils() {
* <ul>
* <li>addressAtDxState (#80)</li>
* <li>countyAtDxAnalysis (#89)</li>
* <li>censusTract2010 (#135)</li>
* <li>censusTract2020 (#135)</li>
* </ul>
* All those properties are defined as constants in this class.
* <br/><br/>
* The returned Cancer Reporting Zone will be a 5-digit or 7-digit alphanumeric code or it can be one of the unknown values listed below :
* The returned Cancer Reporting Zone will be a 5-digit or 7-digit alphanumeric code, or it can be one of the unknown values listed below :
* <ul>
* <li>A = State, county, or tract are invalid</li>
* <li>B = State and tract are valid, but county was not reported</li>
Expand All @@ -50,30 +50,52 @@ public static CancerReportingZoneOutputDto computeCancerReportingZone(StateCount

input.applyRecodes();

if (input.hasInvalidStateCountyOrCensusTract(CensusTract.CENSUS_2010)) {
result.setCancerReportingZone(CANCER_REPORTING_ZONE_UNK_A);
result.setCancerReportingZoneTractReq(CANCER_REPORTING_ZONE_UNK_A);
if (input.hasInvalidStateCountyOrCensusTract(CensusTract.CENSUS_2020)) {
// 2010
result.setCancerReportingZone2010(CANCER_REPORTING_ZONE_UNK_A);
result.setCancerReportingZoneTractReq2010(CANCER_REPORTING_ZONE_UNK_A);
// 2020
result.setCancerReportingZone2020(CANCER_REPORTING_ZONE_UNK_A);
result.setCancerReportingZoneTractReq2020(CANCER_REPORTING_ZONE_UNK_A);
}
else if (input.hasUnknownStateCountyOrCensusTract(CensusTract.CENSUS_2010)) {
result.setCancerReportingZone(CANCER_REPORTING_ZONE_UNK_D);
result.setCancerReportingZoneTractReq(CANCER_REPORTING_ZONE_UNK_D);
else if (input.hasUnknownStateCountyOrCensusTract(CensusTract.CENSUS_2020)) {
// 2010
result.setCancerReportingZone2010(CANCER_REPORTING_ZONE_UNK_D);
result.setCancerReportingZoneTractReq2010(CANCER_REPORTING_ZONE_UNK_D);
// 2020
result.setCancerReportingZone2020(CANCER_REPORTING_ZONE_UNK_D);
result.setCancerReportingZoneTractReq2020(CANCER_REPORTING_ZONE_UNK_D);
}
else if (input.countyIsNotReported()) {
result.setCancerReportingZone(CANCER_REPORTING_ZONE_UNK_B);
result.setCancerReportingZoneTractReq(CANCER_REPORTING_ZONE_UNK_B);
// 2010
result.setCancerReportingZone2010(CANCER_REPORTING_ZONE_UNK_B);
result.setCancerReportingZoneTractReq2010(CANCER_REPORTING_ZONE_UNK_B);
// 2020
result.setCancerReportingZone2020(CANCER_REPORTING_ZONE_UNK_B);
result.setCancerReportingZoneTractReq2020(CANCER_REPORTING_ZONE_UNK_B);
}
else {
CensusData censusData = CountryData.getCensusData(input, CensusTract.CENSUS_2010);
CensusData censusData = CountryData.getCensusData(input, CensusTract.CENSUS_2020);
if (censusData != null) {
result.setCancerReportingZone(censusData.getCancerReportingZone());
result.setCancerReportingZoneTractReq(censusData.getCancerReportingZoneTractCert());
// 2010
result.setCancerReportingZone2010(censusData.getCancerReportingZone2010());
result.setCancerReportingZoneTractReq2010(censusData.getCancerReportingZoneTractReq2010());
// 2020
result.setCancerReportingZone2020(censusData.getCancerReportingZone2020());
result.setCancerReportingZoneTractReq2020(censusData.getCancerReportingZoneTractReq2020());
}
}

if (result.getCancerReportingZone() == null)
result.setCancerReportingZone(CANCER_REPORTING_ZONE_UNK_C);
if (result.getCancerReportingZoneTractReq() == null)
result.setCancerReportingZoneTractReq(CANCER_REPORTING_ZONE_UNK_C);
// 2010
if (result.getCancerReportingZone2010() == null)
result.setCancerReportingZone2010(CANCER_REPORTING_ZONE_UNK_C);
if (result.getCancerReportingZoneTractReq2010() == null)
result.setCancerReportingZoneTractReq2010(CANCER_REPORTING_ZONE_UNK_C);
// 2020
if (result.getCancerReportingZone2020() == null)
result.setCancerReportingZone2020(CANCER_REPORTING_ZONE_UNK_C);
if (result.getCancerReportingZoneTractReq2020() == null)
result.setCancerReportingZoneTractReq2020(CANCER_REPORTING_ZONE_UNK_C);

return result;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@

import static com.imsweb.algorithms.Algorithms.FIELD_CENSUS_2010;
import static com.imsweb.algorithms.Algorithms.FIELD_COUNTY_AT_DX_ANALYSIS;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2010_GEOID_20K;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2010_GEOID_50K;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2010_GEOID_5K;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2020_GEOID_20K;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2020_GEOID_50K;
import static com.imsweb.algorithms.Algorithms.FIELD_EPHT_2020_GEOID_5K;
import static com.imsweb.algorithms.Algorithms.FIELD_STATE_DX;
import static com.imsweb.algorithms.ephtsubcounty.EphtSubCountyUtils.EPHT_2010_GEO_ID_UNK_A;
import static com.imsweb.algorithms.ephtsubcounty.EphtSubCountyUtils.EPHT_2010_GEO_ID_UNK_D;
import static com.imsweb.algorithms.ephtsubcounty.EphtSubCountyUtils.EPHT_2020_GEO_ID_UNK_A;
import static com.imsweb.algorithms.ephtsubcounty.EphtSubCountyUtils.EPHT_2020_GEO_ID_UNK_D;

public class EphtSubCountyAlgorithm extends AbstractAlgorithm {

Expand All @@ -33,13 +33,13 @@ public EphtSubCountyAlgorithm() {
_inputFields.add(Algorithms.getField(FIELD_COUNTY_AT_DX_ANALYSIS));
_inputFields.add(Algorithms.getField(FIELD_CENSUS_2010));

_outputFields.add(Algorithms.getField(FIELD_EPHT_2010_GEOID_5K));
_outputFields.add(Algorithms.getField(FIELD_EPHT_2010_GEOID_20K));
_outputFields.add(Algorithms.getField(FIELD_EPHT_2010_GEOID_50K));
_outputFields.add(Algorithms.getField(FIELD_EPHT_2020_GEOID_5K));
_outputFields.add(Algorithms.getField(FIELD_EPHT_2020_GEOID_20K));
_outputFields.add(Algorithms.getField(FIELD_EPHT_2020_GEOID_50K));

_unknownValues.put(FIELD_EPHT_2010_GEOID_5K, Arrays.asList(EPHT_2010_GEO_ID_UNK_A, EPHT_2010_GEO_ID_UNK_D));
_unknownValues.put(FIELD_EPHT_2010_GEOID_20K, Arrays.asList(EPHT_2010_GEO_ID_UNK_A, EPHT_2010_GEO_ID_UNK_D));
_unknownValues.put(FIELD_EPHT_2010_GEOID_50K, Arrays.asList(EPHT_2010_GEO_ID_UNK_A, EPHT_2010_GEO_ID_UNK_D));
_unknownValues.put(FIELD_EPHT_2020_GEOID_5K, Arrays.asList(EPHT_2020_GEO_ID_UNK_A, EPHT_2020_GEO_ID_UNK_D));
_unknownValues.put(FIELD_EPHT_2020_GEOID_20K, Arrays.asList(EPHT_2020_GEO_ID_UNK_A, EPHT_2020_GEO_ID_UNK_D));
_unknownValues.put(FIELD_EPHT_2020_GEOID_50K, Arrays.asList(EPHT_2020_GEO_ID_UNK_A, EPHT_2020_GEO_ID_UNK_D));
}

@Override
Expand All @@ -49,9 +49,9 @@ public AlgorithmOutput execute(AlgorithmInput input) {
EphtSubCountyOutputDto outputDto = EphtSubCountyUtils.computeEphtSubCounty(createStateCountyTractInputDto(inputTumor));

Map<String, Object> outputTumor = new HashMap<>();
outputTumor.put(FIELD_EPHT_2010_GEOID_5K, outputDto.getEpht2010GeoId5k());
outputTumor.put(FIELD_EPHT_2010_GEOID_20K, outputDto.getEpht2010GeoId20k());
outputTumor.put(FIELD_EPHT_2010_GEOID_50K, outputDto.getEpht2010GeoId50k());
outputTumor.put(FIELD_EPHT_2020_GEOID_5K, outputDto.getEpht2020GeoId5k());
outputTumor.put(FIELD_EPHT_2020_GEOID_20K, outputDto.getEpht2020GeoId20k());
outputTumor.put(FIELD_EPHT_2020_GEOID_50K, outputDto.getEpht2020GeoId50k());
outputTumors.add(outputTumor);
}

Expand Down
Loading
Loading