Fixed loader so that it now sets source system version for ConceptMap resources.
This commit is contained in:
parent
ebbdafb107
commit
476eba676e
|
@ -154,6 +154,7 @@ public abstract class BaseLoincHandler implements IRecordHandler {
|
||||||
if (group == null) {
|
if (group == null) {
|
||||||
group = conceptMap.addGroup();
|
group = conceptMap.addGroup();
|
||||||
group.setSource(theMapping.getSourceCodeSystem());
|
group.setSource(theMapping.getSourceCodeSystem());
|
||||||
|
group.setSourceVersion(theMapping.getSourceCodeSystemVersion());
|
||||||
group.setTarget(theMapping.getTargetCodeSystem());
|
group.setTarget(theMapping.getTargetCodeSystem());
|
||||||
group.setTargetVersion(defaultIfBlank(theMapping.getTargetCodeSystemVersion(), null));
|
group.setTargetVersion(defaultIfBlank(theMapping.getTargetCodeSystemVersion(), null));
|
||||||
}
|
}
|
||||||
|
@ -188,7 +189,7 @@ public abstract class BaseLoincHandler implements IRecordHandler {
|
||||||
|
|
||||||
ValueSet getValueSet(String theValueSetId, String theValueSetUri, String theValueSetName, String theVersionPropertyName) {
|
ValueSet getValueSet(String theValueSetId, String theValueSetUri, String theValueSetName, String theVersionPropertyName) {
|
||||||
|
|
||||||
String version = null;
|
String version;
|
||||||
if (isNotBlank(theVersionPropertyName)) {
|
if (isNotBlank(theVersionPropertyName)) {
|
||||||
version = myUploadProperties.getProperty(theVersionPropertyName);
|
version = myUploadProperties.getProperty(theVersionPropertyName);
|
||||||
} else {
|
} else {
|
||||||
|
@ -231,6 +232,7 @@ public abstract class BaseLoincHandler implements IRecordHandler {
|
||||||
private String myConceptMapVersion;
|
private String myConceptMapVersion;
|
||||||
private String myConceptMapName;
|
private String myConceptMapName;
|
||||||
private String mySourceCodeSystem;
|
private String mySourceCodeSystem;
|
||||||
|
private String mySourceCodeSystemVersion;
|
||||||
private String mySourceCode;
|
private String mySourceCode;
|
||||||
private String mySourceDisplay;
|
private String mySourceDisplay;
|
||||||
private String myTargetCodeSystem;
|
private String myTargetCodeSystem;
|
||||||
|
@ -311,6 +313,15 @@ public abstract class BaseLoincHandler implements IRecordHandler {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String getSourceCodeSystemVersion() {
|
||||||
|
return mySourceCodeSystemVersion;
|
||||||
|
}
|
||||||
|
|
||||||
|
ConceptMapping setSourceCodeSystemVersion(String theSourceCodeSystemVersion) {
|
||||||
|
mySourceCodeSystemVersion = theSourceCodeSystemVersion;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
String getSourceDisplay() {
|
String getSourceDisplay() {
|
||||||
return mySourceDisplay;
|
return mySourceDisplay;
|
||||||
}
|
}
|
||||||
|
|
|
@ -76,6 +76,7 @@ public class LoincIeeeMedicalDeviceCodeHandler extends BaseLoincHandler implemen
|
||||||
.setConceptMapVersion(loincIeeeCmVersion)
|
.setConceptMapVersion(loincIeeeCmVersion)
|
||||||
.setConceptMapName(LOINC_IEEE_CM_NAME)
|
.setConceptMapName(LOINC_IEEE_CM_NAME)
|
||||||
.setSourceCodeSystem(sourceCodeSystemUri)
|
.setSourceCodeSystem(sourceCodeSystemUri)
|
||||||
|
.setSourceCodeSystemVersion(codeSystemVersionId)
|
||||||
.setSourceCode(loincNumber)
|
.setSourceCode(loincNumber)
|
||||||
.setSourceDisplay(longCommonName)
|
.setSourceDisplay(longCommonName)
|
||||||
.setTargetCodeSystem(targetCodeSystemUri)
|
.setTargetCodeSystem(targetCodeSystemUri)
|
||||||
|
|
|
@ -145,6 +145,7 @@ public class LoincPartRelatedCodeMappingHandler extends BaseLoincHandler impleme
|
||||||
.setConceptMapVersion(loincPartMapVersion)
|
.setConceptMapVersion(loincPartMapVersion)
|
||||||
.setConceptMapName(loincPartMapName)
|
.setConceptMapName(loincPartMapName)
|
||||||
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
||||||
|
.setSourceCodeSystemVersion(codeSystemVersionId)
|
||||||
.setSourceCode(partNumber)
|
.setSourceCode(partNumber)
|
||||||
.setSourceDisplay(partName)
|
.setSourceDisplay(partName)
|
||||||
.setTargetCodeSystem(extCodeSystem)
|
.setTargetCodeSystem(extCodeSystem)
|
||||||
|
|
|
@ -198,6 +198,7 @@ public class LoincRsnaPlaybookHandler extends BaseLoincHandler implements IRecor
|
||||||
.setConceptMapVersion(loincRsnaCmVersion)
|
.setConceptMapVersion(loincRsnaCmVersion)
|
||||||
.setConceptMapName(LoincPartRelatedCodeMappingHandler.LOINC_PART_TO_RID_PART_MAP_NAME)
|
.setConceptMapName(LoincPartRelatedCodeMappingHandler.LOINC_PART_TO_RID_PART_MAP_NAME)
|
||||||
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
||||||
|
.setSourceCodeSystemVersion(codeSystemVersionId)
|
||||||
.setSourceCode(partNumber)
|
.setSourceCode(partNumber)
|
||||||
.setSourceDisplay(partName)
|
.setSourceDisplay(partName)
|
||||||
.setTargetCodeSystem(RID_CS_URI)
|
.setTargetCodeSystem(RID_CS_URI)
|
||||||
|
@ -216,6 +217,7 @@ public class LoincRsnaPlaybookHandler extends BaseLoincHandler implements IRecor
|
||||||
.setConceptMapVersion(loincRsnaCmVersion)
|
.setConceptMapVersion(loincRsnaCmVersion)
|
||||||
.setConceptMapName(LoincPartRelatedCodeMappingHandler.LOINC_TERM_TO_RPID_PART_MAP_NAME)
|
.setConceptMapName(LoincPartRelatedCodeMappingHandler.LOINC_TERM_TO_RPID_PART_MAP_NAME)
|
||||||
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
.setSourceCodeSystem(ITermLoaderSvc.LOINC_URI)
|
||||||
|
.setSourceCodeSystemVersion(codeSystemVersionId)
|
||||||
.setSourceCode(loincNumber)
|
.setSourceCode(loincNumber)
|
||||||
.setSourceDisplay(longCommonName)
|
.setSourceDisplay(longCommonName)
|
||||||
.setTargetCodeSystem(RPID_CS_URI)
|
.setTargetCodeSystem(RPID_CS_URI)
|
||||||
|
|
|
@ -116,7 +116,7 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private void verifyLoadLoinc() throws Exception {
|
private void verifyLoadLoinc() {
|
||||||
// Actually do the load
|
// Actually do the load
|
||||||
mySvc.loadLoinc(myFiles.getFiles(), mySrd);
|
mySvc.loadLoinc(myFiles.getFiles(), mySrd);
|
||||||
|
|
||||||
|
@ -198,14 +198,15 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
|
|
||||||
// Part Mappings
|
// Part Mappings
|
||||||
conceptMap = conceptMaps.get(LoincPartRelatedCodeMappingHandler.LOINC_SCT_PART_MAP_ID);
|
conceptMap = conceptMaps.get(LoincPartRelatedCodeMappingHandler.LOINC_SCT_PART_MAP_ID);
|
||||||
assertEquals(null, conceptMap.getSource());
|
assertNull(conceptMap.getSource());
|
||||||
assertEquals(null, conceptMap.getTarget());
|
assertNull(conceptMap.getTarget());
|
||||||
assertEquals(LoincPartRelatedCodeMappingHandler.LOINC_SCT_PART_MAP_URI, conceptMap.getUrl());
|
assertEquals(LoincPartRelatedCodeMappingHandler.LOINC_SCT_PART_MAP_URI, conceptMap.getUrl());
|
||||||
assertEquals("This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at https://loinc.org/license/. The LOINC Part File, LOINC/SNOMED CT Expression Association and Map Sets File, RELMA database and associated search index files include SNOMED Clinical Terms (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organisation (IHTSDO) under license. All rights are reserved. SNOMED CT® was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO. Use of SNOMED CT content is subject to the terms and conditions set forth in the SNOMED CT Affiliate License Agreement. It is the responsibility of those implementing this product to ensure they are appropriately licensed and for more information on the license, including how to register as an Affiliate Licensee, please refer to http://www.snomed.org/snomed-ct/get-snomed-ct or info@snomed.org. Under the terms of the Affiliate License, use of SNOMED CT in countries that are not IHTSDO Members is subject to reporting and fee payment obligations. However, IHTSDO agrees to waive the requirements to report and pay fees for use of SNOMED CT content included in the LOINC Part Mapping and LOINC Term Associations for purposes that support or enable more effective use of LOINC. This material includes content from the US Edition to SNOMED CT, which is developed and maintained by the U.S. National Library of Medicine and is available to authorized UMLS Metathesaurus Licensees from the UTS Downloads site at https://uts.nlm.nih.gov.", conceptMap.getCopyright());
|
assertEquals("This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at https://loinc.org/license/. The LOINC Part File, LOINC/SNOMED CT Expression Association and Map Sets File, RELMA database and associated search index files include SNOMED Clinical Terms (SNOMED CT®) which is used by permission of the International Health Terminology Standards Development Organisation (IHTSDO) under license. All rights are reserved. SNOMED CT® was originally created by The College of American Pathologists. “SNOMED” and “SNOMED CT” are registered trademarks of the IHTSDO. Use of SNOMED CT content is subject to the terms and conditions set forth in the SNOMED CT Affiliate License Agreement. It is the responsibility of those implementing this product to ensure they are appropriately licensed and for more information on the license, including how to register as an Affiliate Licensee, please refer to http://www.snomed.org/snomed-ct/get-snomed-ct or info@snomed.org. Under the terms of the Affiliate License, use of SNOMED CT in countries that are not IHTSDO Members is subject to reporting and fee payment obligations. However, IHTSDO agrees to waive the requirements to report and pay fees for use of SNOMED CT content included in the LOINC Part Mapping and LOINC Term Associations for purposes that support or enable more effective use of LOINC. This material includes content from the US Edition to SNOMED CT, which is developed and maintained by the U.S. National Library of Medicine and is available to authorized UMLS Metathesaurus Licensees from the UTS Downloads site at https://uts.nlm.nih.gov.", conceptMap.getCopyright());
|
||||||
assertEquals("Beta.1", conceptMap.getVersion());
|
assertEquals("Beta.1", conceptMap.getVersion());
|
||||||
assertEquals(1, conceptMap.getGroup().size());
|
assertEquals(1, conceptMap.getGroup().size());
|
||||||
group = conceptMap.getGroup().get(0);
|
group = conceptMap.getGroup().get(0);
|
||||||
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertNull(group.getSourceVersion());
|
||||||
assertEquals(ITermLoaderSvc.SCT_URI, group.getTarget());
|
assertEquals(ITermLoaderSvc.SCT_URI, group.getTarget());
|
||||||
assertEquals("http://snomed.info/sct/900000000000207008/version/20170731", group.getTargetVersion());
|
assertEquals("http://snomed.info/sct/900000000000207008/version/20170731", group.getTargetVersion());
|
||||||
assertEquals("LP18172-4", group.getElement().get(0).getCode());
|
assertEquals("LP18172-4", group.getElement().get(0).getCode());
|
||||||
|
@ -274,6 +275,7 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
group = conceptMap.getGroupFirstRep();
|
group = conceptMap.getGroupFirstRep();
|
||||||
// all entries have the same source and target so these should be null
|
// all entries have the same source and target so these should be null
|
||||||
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertNull(group.getSourceVersion());
|
||||||
assertEquals(LoincRsnaPlaybookHandler.RID_CS_URI, group.getTarget());
|
assertEquals(LoincRsnaPlaybookHandler.RID_CS_URI, group.getTarget());
|
||||||
assertEquals("LP199995-4", group.getElement().get(0).getCode());
|
assertEquals("LP199995-4", group.getElement().get(0).getCode());
|
||||||
assertEquals("Neck", group.getElement().get(0).getDisplay());
|
assertEquals("Neck", group.getElement().get(0).getDisplay());
|
||||||
|
@ -291,6 +293,7 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
group = conceptMap.getGroupFirstRep();
|
group = conceptMap.getGroupFirstRep();
|
||||||
// all entries have the same source and target so these should be null
|
// all entries have the same source and target so these should be null
|
||||||
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertNull(group.getSourceVersion());
|
||||||
assertEquals(LoincRsnaPlaybookHandler.RPID_CS_URI, group.getTarget());
|
assertEquals(LoincRsnaPlaybookHandler.RPID_CS_URI, group.getTarget());
|
||||||
assertEquals("24531-6", group.getElement().get(0).getCode());
|
assertEquals("24531-6", group.getElement().get(0).getCode());
|
||||||
assertEquals("US Retroperitoneum", group.getElement().get(0).getDisplay());
|
assertEquals("US Retroperitoneum", group.getElement().get(0).getDisplay());
|
||||||
|
@ -418,6 +421,10 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
List<ConceptMap> loincCM_resources = myConceptMapCaptor.getValue();
|
List<ConceptMap> loincCM_resources = myConceptMapCaptor.getValue();
|
||||||
for (ConceptMap loincCM : loincCM_resources) {
|
for (ConceptMap loincCM : loincCM_resources) {
|
||||||
assertEquals("2.67.Beta.1", loincCM.getVersion());
|
assertEquals("2.67.Beta.1", loincCM.getVersion());
|
||||||
|
assertEquals(1, loincCM.getGroup().size());
|
||||||
|
ConceptMap.ConceptMapGroupComponent group = loincCM.getGroup().get(0);
|
||||||
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertEquals("2.67", group.getSourceVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update LOINC marked as version 2.67
|
// Update LOINC marked as version 2.67
|
||||||
|
@ -439,6 +446,10 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
loincCM_resources = myConceptMapCaptor.getValue();
|
loincCM_resources = myConceptMapCaptor.getValue();
|
||||||
for (ConceptMap loincCM : loincCM_resources) {
|
for (ConceptMap loincCM : loincCM_resources) {
|
||||||
assertEquals("2.67.Beta.1", loincCM.getVersion());
|
assertEquals("2.67.Beta.1", loincCM.getVersion());
|
||||||
|
assertEquals(1, loincCM.getGroup().size());
|
||||||
|
ConceptMap.ConceptMapGroupComponent group = loincCM.getGroup().get(0);
|
||||||
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertEquals("2.67", group.getSourceVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load LOINC marked as version 2.68
|
// Load LOINC marked as version 2.68
|
||||||
|
@ -460,6 +471,10 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
loincCM_resources = myConceptMapCaptor.getValue();
|
loincCM_resources = myConceptMapCaptor.getValue();
|
||||||
for (ConceptMap loincCM : loincCM_resources) {
|
for (ConceptMap loincCM : loincCM_resources) {
|
||||||
assertEquals("2.68.Beta.1", loincCM.getVersion());
|
assertEquals("2.68.Beta.1", loincCM.getVersion());
|
||||||
|
assertEquals(1, loincCM.getGroup().size());
|
||||||
|
ConceptMap.ConceptMapGroupComponent group = loincCM.getGroup().get(0);
|
||||||
|
assertEquals(ITermLoaderSvc.LOINC_URI, group.getSource());
|
||||||
|
assertEquals("2.68", group.getSourceVersion());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -554,13 +569,8 @@ public class TerminologyLoaderSvcLoincTest extends BaseLoaderTest {
|
||||||
|
|
||||||
verify(myTermCodeSystemStorageSvc, times(1)).storeNewCodeSystemVersion(mySystemCaptor.capture(), myCsvCaptor.capture(), any(RequestDetails.class), myValueSetsCaptor.capture(), myConceptMapCaptor.capture());
|
verify(myTermCodeSystemStorageSvc, times(1)).storeNewCodeSystemVersion(mySystemCaptor.capture(), myCsvCaptor.capture(), any(RequestDetails.class), myValueSetsCaptor.capture(), myConceptMapCaptor.capture());
|
||||||
Map<String, TermConcept> concepts = extractConcepts();
|
Map<String, TermConcept> concepts = extractConcepts();
|
||||||
Map<String, ValueSet> valueSets = extractValueSets();
|
|
||||||
Map<String, ConceptMap> conceptMaps = extractConceptMaps();
|
|
||||||
|
|
||||||
ConceptMap conceptMap;
|
|
||||||
TermConcept code;
|
TermConcept code;
|
||||||
ValueSet vs;
|
|
||||||
ConceptMap.ConceptMapGroupComponent group;
|
|
||||||
|
|
||||||
// Normal LOINC code
|
// Normal LOINC code
|
||||||
code = concepts.get("10013-1");
|
code = concepts.get("10013-1");
|
||||||
|
|
Loading…
Reference in New Issue