frostyfan109 / tranql

A Translator Query Language
https://researchsoftwareinstitute.github.io/data-translator/apps/tranql
MIT License
0 stars 1 forks source link

Tabular view #105

Closed stevencox closed 5 years ago

stevencox commented 5 years ago

I'm filtering the view by robokop but one rtx row still shows. Am I reading this correctly?

image

... ok, I'm guessing this means that the node was returned by both reasoners. Is that the idea?

frostyfan109 commented 5 years ago

Yep. Right now its an inclusive match. If the string ("-robokop -rtx") includes the substring ("-robokop") it will match the row. I found that this was necessary because of the line breaks resulting in things not matching properly.

Let me know if you think there should be a setting to switch this to an exact match. You can technically do it right now with the regex syntax (/^- robokop$/), but this is not going to be the case for most users.