Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document Readme #1

Open
Crispae opened this issue Oct 15, 2023 · 4 comments
Open

Document Readme #1

Crispae opened this issue Oct 15, 2023 · 4 comments
Assignees
Labels
documentation Improvements or additions to documentation

Comments

@Crispae
Copy link
Collaborator

Crispae commented Oct 15, 2023

No description provided.

@Crispae Crispae added the documentation Improvements or additions to documentation label Oct 15, 2023
@Crispae Crispae self-assigned this Oct 15, 2023
@Crispae Crispae changed the title Documnet Readme Document Readme Oct 15, 2023
@Crispae
Copy link
Collaborator Author

Crispae commented Nov 20, 2023

Documentation github page initiated

@Crispae
Copy link
Collaborator Author

Crispae commented Dec 18, 2023

Some examples query to added in documentation

complex query
NQ: Cells in which key events linked to AOP 360 occur.
CQ:

MATCH (a:AOP {id:'360'})-[r:HAS_KEY_EVENT]-(e:KEY_EVENT)
MATCH (e)-[r2:OCCURS_IN_CELL]-(c:CELL)
RETURN *

@Crispae
Copy link
Collaborator Author

Crispae commented Dec 18, 2023

NQ: "cuticle secreting cell" linked to what other key events
CQ:

MATCH (c:CELL {name:'cuticle secreting cell'})-[r:OCCURS_IN_CELL]-(ke:KEY_EVENT)
RETURN *  

@Crispae
Copy link
Collaborator Author

Crispae commented Dec 19, 2023

NQ: extract the key event, whose name contain "neuro" and linked them with their respective aops
CQ:

MATCH (ke:KEY_EVENT)-[rel:HAS_KEY_EVENT]-(aop:AOP)
WHERE toLower(ke.name) =~ '.*neuro.*'
RETURN *  

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant