Negation Missing in JSON Output
Closed this issue · 1 comments
dcronkite commented
The json
output in version MetaMapLite 3.6.2rc6 (and previous versions) does not contain negation output from the NegEx or Context algorithms.
E.g., running echo "no covid-19" | ./metamaplite.sh --pipe --outputformat=json
[
{
"matchedtext": "covid-19",
"evlist": [
{
"score": 0,
"matchedtext": "covid-19",
"start": 3,
"length": 8,
"id": "ev0",
"conceptinfo": {
"conceptstring": "COVID-19",
"sources": [
"MTH",
"SNOMEDCT_US"
],
"cui": "C5203670",
"preferredname": "COVID-19",
"semantictypes": [
"dsyn"
]
}
}
],
"docid": "00000000.tx",
"start": 3,
"length": 8,
"id": "en0",
"fieldid": "text"
}
]
Whereas mmi output contains the information:
00000000.tx|MMI|0.46|COVID-19|C5203670|[dsyn]|"COVID-19"-text-0-"covid-19"-NN-1|text|3/8||
Can this be added?