https://github.com/hscells/meshexp
Medical Subject Heading Exploder
https://github.com/hscells/meshexp
medical-subject-headings medline mesh pubmed systematic-reviews
Last synced: 6 months ago
JSON representation
Medical Subject Heading Exploder
- Host: GitHub
- URL: https://github.com/hscells/meshexp
- Owner: hscells
- Created: 2017-12-14T00:59:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T07:15:47.000Z (over 6 years ago)
- Last Synced: 2025-03-26T09:51:12.317Z (6 months ago)
- Topics: medical-subject-headings, medline, mesh, pubmed, systematic-reviews
- Language: Go
- Homepage: https://godoc.org/github.com/hscells/meshexp
- Size: 548 KB
- Stars: 4
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# meshexp
[](https://godoc.org/github.com/hscells/meshexp)
[](https://goreportcard.com/report/github.com/hscells/meshexp)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:
```go
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.