Edit this page | Blame

Dump GeneWiki Metadata

Tags

  • assigned: bonfacem
  • type: feature
  • keywords: metadata, RDF

Dump the tables:

  • GeneRIF
  • GeneRIF_BASIC

Resources

Checking for duplicates

ag "Observational study of gene-disease association" dump.ttl --pager='less -R'
ag "gn:symbol" | sort | less
ag "gn:anonSymbol" | sort | less

Issues

  • Some entries in the GeneRIF table don't have any entries in the GeneRIF_BASIC table:
SELECT * FROM GeneRIF LEFT JOIN GeneRIF_BASIC USING (symbol)
LEFT JOIN GeneRIFXRef ON GeneRIFXRef.GeneRIFId = GeneRIF.Id
LEFT JOIN GeneCategory ON GeneRIFXRef.GeneCategoryId = GeneCategory.Id
WHERE GeneRIF.display > 0 AND GeneRIF.VersionId = 0
AND GeneRIF_BASIC.GeneId IS NULL\G
  • Missing data: some GeneIds stored in GN are not in GeneInfo. These can be conceptualised as anonymous genewiki entries. One example is the symbol "Mul1" with the GeneId 68350. This example exists in GN with different GeneId's. Example query:
SELECT * FROM GeneInfo WHERE GeneId = 68350\G 
  • NEWENTRY: We have many genes with the "NEWENTRY". In GN1, these are represented in one very big page:

To query these entries:

SELECT * FROM GeneRIF_BASIC WHERE symbol = 'NEWENTRY'\G
  • Broken UTF-8 character sets that rapper errored out on and that had to be manually fixed. Here's a list:
'(("\x28" . "")
  ("\x29" . "")
  ("\xa0" . " ")
  ("��\x81���" . "/")
  ("�����\x9d" . #\")
  ("��������" . #\')
  ("\x02" . "")
  ("\x01" . "")
  ("����" . "��")
  ("����-��\xad" . "��")
  ("��\xad" . "")
  ("����" . "��")
  ("��������" . "-"))
  • In the GeneRIF_BASIC table, there are 14,313 rows with an empty symbol:
SELECT COUNT(*) FROM GeneRIF_BASIC WHERE symbol = '';
  • The are comments with the same values but different GeneIds. Example:
  • closed
(made with skribilo)