NCATSTranslator / TACT

For voting on two-month release cycle items
0 stars 3 forks source link

MultiCurie Query #15

Open cbizon opened 4 months ago

cbizon commented 4 months ago

Broad issue to track progress and information about MCQ

cbizon commented 4 months ago

Here is a template for the inferred MCQ that we are working on:

{
    "message": {
        "query_graph": {
            "nodes": {
                "n0": {
                    "ids": ["uuid:IdentifierFromNN"],
                    "member_ids": ["...","...","..."],
                    "categories": ["biolink:PhenotypicFeature"],
                    "set_interpretation": "MANY"
                },
                "n1": {
                    "categories": ["biolink:Gene"]
                }
            },
            "edges": {
                "e01": {
                    "subject": "n0",
                    "object": "n1",
                    "predicates": ["biolink:genetically_associated_with"],
                    "knowledge_type": "inferred"
                }
            }
        }
    }
}