You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When typing text into the node picker, the current implementation adds an option to the dropdown with the literal text entered if it includes a colon :. This idea of this is to support inputing a CURIE directly into the box. This presents a problem if the node you're searching for contains a colon in its label. Relevant code:
See the following example. Note this is from the YOBOKOP UI/graph, so it may not show up in the ROBOKOP UI.
The very first option in the list will put the text H3K4me (chrIII:451-600) (the label/name of the yeast node) in as the CURIE in the TRAPI request. Where as the other options (the results from nameres) will show the label/name in the UI when clicked, but populate the actual CURIE/identifier in the TRAPI request.
The actual node desired is the third option in this list (notice it has the same text as the first option). When the third is clicked, it will put in the right CURIE (BinHisPTM:chrX(451-600);H3K36me2). If the first is clicked, no results will be returned because the name isn't a valid identifier
Screen.Recording.2024-03-19.at.2.27.59.PM.mov
The text was updated successfully, but these errors were encountered:
When typing text into the node picker, the current implementation adds an option to the dropdown with the literal text entered if it includes a colon
:
. This idea of this is to support inputing a CURIE directly into the box. This presents a problem if the node you're searching for contains a colon in its label. Relevant code:qgraph/src/pages/queryBuilder/textEditor/textEditorRow/NodeSelector.jsx
Lines 104 to 106 in 1416c7d
See the following example. Note this is from the YOBOKOP UI/graph, so it may not show up in the ROBOKOP UI.
The very first option in the list will put the text
H3K4me (chrIII:451-600)
(the label/name of the yeast node) in as the CURIE in the TRAPI request. Where as the other options (the results from nameres) will show the label/name in the UI when clicked, but populate the actual CURIE/identifier in the TRAPI request.The actual node desired is the third option in this list (notice it has the same text as the first option). When the third is clicked, it will put in the right CURIE (
BinHisPTM:chrX(451-600);H3K36me2
). If the first is clicked, no results will be returned because the name isn't a valid identifierScreen.Recording.2024-03-19.at.2.27.59.PM.mov
The text was updated successfully, but these errors were encountered: