Terminology terminology = new NobleCoderTerminology("TIES_Pathology");
//Terminology terminology = new NobleCoderTerminology("NCI_Thesaurus");
PathHelper ph = new PathHelper(terminology);
//ph.createAncestryCache();
for(String text: Arrays.asList("melanoma","nevus","skin","margin")){
for(Concept c: terminology.search(text)){
long t = System.currentTimeMillis();
// lookup paths
List<ConceptPath> path = ph.getPaths(c);
t = System.currentTimeMillis()-t;