-
Notifications
You must be signed in to change notification settings - Fork 2
matches missing from figures__xrefs view #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Somehow, in contrast to the example above, this case with two words that are identical behaves just fine and the individual hits, AKT1 and AKT2, are properly included in
|
Another case where match did NOT get pulled into
|
And another, "NF-KB":
|
Another case with "NF-KB":
...but why does it matching before having the hyphen removed?? The lexicon only contains "NFKB". |
The symbols table doesn't contain anything starting with "CYCLIN": SELECT * FROM symbols WHERE symbol LIKE 'CYC%'; (edit: but does have items starting with "Cyclin") |
Turns out it was the non-alphanumeric characters like dashes. |
In this example, Cyclin E/A is successfully matched, added to
success.txt
andmatch_attempts
, but it's missing fromfigures__xrefs
. Here are the results from a query againstmatch_attempts
:Everything is pulled into the view just fine except for the two CyclinE/A columns. I'm guessing there is some sort of unique criteria being applied to the
word
column in the construction of the view?? Though it's odd that it's excluding both and not just one, right?The text was updated successfully, but these errors were encountered: