NIH | National Cancer Institute | NCI Wiki  

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Get Resolved Concept References for the Coding Scheme Unique Identifier

Code Block
 

Description:

Gets Resolved Concept Reference representations of entity values in a value set based on the unique identifier of the coding scheme representation

Input:

String uri: String representation of the coding scheme unique identifier

Output:

ResolvedConceptReferenceList or ResolvedConceptReferencesIterator:  Entities listed or iterated over that are members of the value set defined by the unique URI designation

Exception:

none

Implementation Details:

Implementation:
Call this method on the associated LexEVS Asserted Value Set service instance to

determine what coding schemes define the

get entities from a unique value set


Sample Call:

  • Step 1:Instantiate SourceAssertedValueSetService if it is not done yet:

    Code Block
    org.lexgrid.valuesets.SourceAssertedValueSetServiceImpl  assVSServ = new SourceAssertedValueSetServiceImpl(new AssertedValueSetParameters.Builder().build());
    
  • Step 2: Get a coding scheme using one of the Asserted Value Set Service methods: 

    Code Block
CodingScheme
  • ResolvedConceptReferencesIterator 
cs
  • iterator = assVSServ.
getSourceAssertedValueSetForValueSetURI
  • getSourceAssertedValueSetIteratorForURI(
new URI(
  • "http://evs.nci.nih.gov/valueset/CDISC/
C12434
  • C119014")
)
  • ;
Step  3: List all the coding schemes defined by the top node designated by the unique identifier
  • or

    Code Block
AbsoluteCodingSchemeVersionReferenceList
  • ResolvedConceptReferenceList list = assVSServ.
getListOfCodingSchemeVersionsUsedInResolution(cs
  • getSourceAssertedValueSetEntitiesForURI("http://evs.nci.nih.gov/valueset/CDISC/C119014");

     

     

Search Function

  • Get value set coding scheme reference based on a text match for a member entity - Can be used with a text match algorithm determining match type.

...