We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Welcome to the gfe-db wiki!
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
by accession number
MATCH (f:Feature) WITH f, count(f.accession) AS c WHERE c > 1 RETURN f