NIH | National Cancer Institute | NCI Wiki  

WIKI MAINTENANCE NOTICE

Please be advised that NCI Wiki will be undergoing maintenance Monday, July 22nd between 1700 ET and 1800 ET and will be unavailable during this period.
Please ensure all work is saved before said time.

If you have any questions or concerns, please contact the CBIIT Atlassian Management Team.

This will search for all concepts in the given vocabulary that possess the given property, regardless of the property's value.

Java Code Snippet
//Identify the vocabulary to search         
CodingSchemeVersionOrTag csvt = new CodingSchemeVersionOrTag();       
csvt.setTag("PRODUCTION");
String scheme = "NCI Thesaurus";

CodedNodeSet cns = lbSvc.getCodingSchemeConcepts(scheme, csvt);

//constrain: concept property 'GTEx_CDE' exists
cns = cns.restrictToProperties(ConvenienceMethods.createLocalNameList(new String[] { "GTEx_CDE" }), null);

//now get the concepts
ResolvedConceptReferenceList matches = cns.resolveToList(null, null, null, 50);





  • No labels