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
{{ message }}
This repository has been archived by the owner on Sep 24, 2019. It is now read-only.
Equivalence and orthology relationships may point to 'orphan' uris - i.e., uris that are created by the equivalence/orthology relationship and do not exist in the graph. Need to incorporate tests and/or fixes for these.
Return # of 'orphan' uris created by equivalence relationships:
select (count(distinct ?uri2) as ?count)
where {
?uri1 skos:exactMatch ?uri2 .
minus { ?uri2 skos:inScheme ?scheme .}
}
Return # of 'orphan' uris created by orthology relationships:
select (count(distinct ?uri2) as ?count)
where {
?uri1 belv:orthologousMatch ?uri2 .
minus { ?uri2 skos:inScheme ?scheme .}
}
The text was updated successfully, but these errors were encountered:
Most of the orphan equivalences (~18,000) are from EntrezGene; these appear to be primarily mappings to MGI feature types "DNA segment" and "complex/cluster/region" (currently only Gene and Pseudogene are part of namespace)
~700 are from Affymetrix mappings; these are references to withdrawn EGIDs
Other orphan equivalences from:
equivalence mapping uses alt_id (these could be fixed if identified)
Equivalence and orthology relationships may point to 'orphan' uris - i.e., uris that are created by the equivalence/orthology relationship and do not exist in the graph. Need to incorporate tests and/or fixes for these.
Return # of 'orphan' uris created by equivalence relationships:
select (count(distinct ?uri2) as ?count)
where {
?uri1 skos:exactMatch ?uri2 .
minus { ?uri2 skos:inScheme ?scheme .}
}
Return # of 'orphan' uris created by orthology relationships:
select (count(distinct ?uri2) as ?count)
where {
?uri1 belv:orthologousMatch ?uri2 .
minus { ?uri2 skos:inScheme ?scheme .}
}
The text was updated successfully, but these errors were encountered: