mygene.info icon indicating copy to clipboard operation
mygene.info copied to clipboard

Restructure MyGene.info Homolog field

Open kevinxin90 opened this issue 5 years ago • 0 comments

Is this something of interest to restructure the homolog field in MyGene.info? Current structure:

"homologene": {
    "genes": [
        [
            9606,
            1017
        ],
        [
            10090,
            12566
        ],
        [
            10116,
            362817
        ]
    ]
}

This is less intuitive and no compatible with JSON-LD.

Proposed structure:

"homologene": {
    "genes": [
        {
            "taxid": 9606,
            "geneid": 1017
        },
        {
            "taxid": 10090,
            "geneid": 12566
        },
        {
            "taxid": 10116,
            "geneid": 362817
        }
    ]
}

kevinxin90 avatar Aug 14 '18 17:08 kevinxin90