Skip to content

Instantly share code, notes, and snippets.

@lpand
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lpand/8825691 to your computer and use it in GitHub Desktop.
Save lpand/8825691 to your computer and use it in GitHub Desktop.
Enrichment front-end app data format
{
"Gene Ontology (GO)": {
"header": {
"type": "annotation",
"columns": ["id", "status", "..."],
"display_names": ["name", "status", "..."]
},
"nodes": [
{ "id": "", "status": "", "start": "", "type": "term" },
{ "id": "", "foo": "", "bar": "", "type": "gene" },
{ "id": "", "foo": "", "bar": "", "type": "gene" },
{ "id": "", "status": "", "start": "", "type": "term" },
{ "id": "", "foo": "", "bar": "", "type": "gene" },
],
"edges": [
{ "source": 1, "target": 0 },
{ "source": 2, "target": 0 },
{ "source": 4, "target": 3 }
]
},
"PIRSF": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment