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
For reporting back to the wider group, it would be useful to regularly generate reports we can use to track progress. Here's a first attempt at a simple cypher query to use for generating a crude progress report:
MATCH (Cluster:Class { label: 'Cluster'})<-[:INSTANCEOF]-(i:Individual)
OPTIONAL MATCH (cl:Class)<-[:SUBCLASSOF]-(c:Class)-[r:has_exemplar]->(i)
RETURN count(distinct r) as transcriptomics_classes, count(distinct i) as taxonomy_nodes,
count(distinct cl) as cl_parent_classes
The text was updated successfully, but these errors were encountered:
STATUS: Draft
For reporting back to the wider group, it would be useful to regularly generate reports we can use to track progress. Here's a first attempt at a simple cypher query to use for generating a crude progress report:
The text was updated successfully, but these errors were encountered: