Skip to content

hscells/meshexp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

meshexp

GoDoc Go Report Card

meshexp is a library for analysing and exploding medical subject headings (MeSH). It comes with what is to the best of the authors knowledge the most up to date version of the MeSH ontology published.

An example use of this library is as follows:

tree, err := Default()
if err != nil {
    t.Error(err)
}

tree.Explode("neuralgia, postherpetic")

This will return a subsumption of the particular term.

For more information, see the godoc, available by clicking the badge above.