Skip to content

Validation Queries

Martin Maiers edited this page Feb 13, 2024 · 2 revisions

Welcome to the gfe-db wiki!

validation queries

  1. GFE uniqueness

query to find any repeated GFE names:


MATCH (g:GFE)
WITH g, count(g.name) AS c
WHERE c > 1
RETURN g

should return 0 rows

  1. Feature uniqueness

by accession number

MATCH (f:Feature)
WITH f, count(f.accession) AS c
WHERE c > 1
RETURN f

should return 0 rows

Clone this wiki locally