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
The issue is that we don't currently index the input of GAF files as-is, rather they go through several layers of abstraction. By the time the information from the input file hits the index, the input (using an stc1 annotation as an example):
localization_dependent_on(GO:0031048)
has variously become:
["{\"relationship\": {\"relation\": [{\"id\": \"GOREL:0000009\", \"label\": \"localization_dependent_on\"}], \"id\": \"GO:0031048\", \"label\": \"chromatin silencing by small RNA\"}}"],
and:
chromatin silencing by small RNA
and:
GO:0031048
as well as the various closures.
After a little discussion, the solution will be to add one or more fields to the index for annotations that are:
the entire input line
the "hard" fields as they stand
The text was updated successfully, but these errors were encountered:
The issue is that we don't currently index the input of GAF files as-is, rather they go through several layers of abstraction. By the time the information from the input file hits the index, the input (using an stc1 annotation as an example):
localization_dependent_on(GO:0031048)
has variously become:
["{\"relationship\": {\"relation\": [{\"id\": \"GOREL:0000009\", \"label\": \"localization_dependent_on\"}], \"id\": \"GO:0031048\", \"label\": \"chromatin silencing by small RNA\"}}"],
and:
chromatin silencing by small RNA
and:
GO:0031048
as well as the various closures.
After a little discussion, the solution will be to add one or more fields to the index for annotations that are:
The text was updated successfully, but these errors were encountered: