In [51]:
import requests
import json
import pandas as pd
import seaborn as sns;

Set our list of targets, the disease to run against and number of top associations to filter through


In [52]:
mytargets = ['DRD2', 'DRD4', 'PINK1', 'GRIN1', 'FUS', 'ANG', 'FRED', 'BERT']
disease = "EFO_0002508"     # Parkinson's
#disease = "EFO_0000253"     # ALS
maxresults = 100             # max 10,000

Make the API call with our disease to find the top results (ordered by overall score descending)


In [53]:
url = 'https://www.targetvalidation.org/api/latest/public/association/filter'
headers = {"Accept": "application/json"}
data = "{\"disease\":[\"" + disease + "\"], \"size\":" + str(maxresults) + "}"

response = requests.post(url, headers=headers, data=data)
output = response.json()

Lets see what we got back


In [54]:
print json.dumps(output, indent=2)


{
  "from": 0, 
  "facets": {}, 
  "took": 98, 
  "therapeutic_areas": [], 
  "total": 1717, 
  "data": [
    {
      "target": {
        "gene_info": {
          "symbol": "ATP13A2", 
          "name": "ATPase 13A2"
        }, 
        "id": "ENSG00000159363"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06705213664546321, 
          "rna_expression": 0.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 1.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.9899124999999999, 
          "europepmc": 0.06705213664546321, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 48.0, 
          "rna_expression": 0.0, 
          "genetic_association": 8.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 56.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 1.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 7.0, 
          "europepmc": 48.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000159363-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DNAJC13", 
          "name": "DnaJ heat shock protein family (Hsp40) member C13"
        }, 
        "id": "ENSG00000138246"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05293821674225247, 
          "rna_expression": 0.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 1.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05293821674225247, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.7, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 10.0, 
          "rna_expression": 0.0, 
          "genetic_association": 2.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 12.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 1.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 10.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 1.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000138246-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "LRRK2", 
          "name": "leucine rich repeat kinase 2"
        }, 
        "id": "ENSG00000188906"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.12505500113984228, 
          "rna_expression": 0.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.48999999999999994, 
          "europepmc": 0.12505500113984228, 
          "gwas_catalog": 1, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 925.0, 
          "rna_expression": 0.0, 
          "genetic_association": 6.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 931.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 1.0, 
          "europepmc": 925.0, 
          "gwas_catalog": 5.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000188906-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SNCA", 
          "name": "synuclein alpha"
        }, 
        "id": "ENSG00000145335"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.1279404038724967, 
          "rna_expression": 0.00864837749664953, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.00864837749664953, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.6975694444444444, 
          "europepmc": 0.1279404038724967, 
          "gwas_catalog": 0.9270529134794556, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2032.0, 
          "rna_expression": 1.0, 
          "genetic_association": 17.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2050.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 4.0, 
          "europepmc": 2032.0, 
          "gwas_catalog": 13.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000145335-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DRD2", 
          "name": "dopamine receptor D2"
        }, 
        "id": "ENSG00000149295"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0746059308062336, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.2347131290953496, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.2347131290953496, 
          "eva": 0.0, 
          "europepmc": 0.0746059308062336, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 137.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 86.0, 
          "animal_model": 11.0, 
          "affected_pathway": 0.0
        }, 
        "total": 234.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 11.0, 
          "eva": 0.0, 
          "europepmc": 137.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 86.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000149295-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "MAOB", 
          "name": "monoamine oxidase B"
        }, 
        "id": "ENSG00000069535"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.08655178316465198, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.08655178316465198, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 331.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 30.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 361.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 331.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 30.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000069535-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SLC6A3", 
          "name": "solute carrier family 6 member 3"
        }, 
        "id": "ENSG00000142319"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.07529074250150272, 
          "rna_expression": 0.022124178395501022, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.022124178395501022, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.07529074250150272, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 20.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 23.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 20.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000142319-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "COMT", 
          "name": "catechol-O-methyltransferase"
        }, 
        "id": "ENSG00000093010"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.08462014828981981, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.08462014828981981, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 305.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 21.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 326.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 305.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 21.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000093010-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "BCHE", 
          "name": "butyrylcholinesterase"
        }, 
        "id": "ENSG00000114200"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.07833431427755484, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.07833431427755484, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 71.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 5.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 76.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 71.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 5.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000114200-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DDC", 
          "name": "dopa decarboxylase"
        }, 
        "id": "ENSG00000132437"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06658972964758132, 
          "rna_expression": 0.020344180017235106, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.020344180017235106, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.06658972964758132, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 78.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 15.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 94.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 78.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 15.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000132437-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ACHE", 
          "name": "acetylcholinesterase (Cartwright blood group)"
        }, 
        "id": "ENSG00000087085"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06940506350232803, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.06940506350232803, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 52.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 11.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 63.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 52.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 11.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000087085-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN2B", 
          "name": "glutamate ionotropic receptor NMDA type subunit 2B"
        }, 
        "id": "ENSG00000273079"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0608065352379652, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0608065352379652, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 27.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 73.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 27.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000273079-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DRD3", 
          "name": "dopamine receptor D3"
        }, 
        "id": "ENSG00000151577"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05732701412957727, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05732701412957727, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 35.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 91.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 126.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 35.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 91.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000151577-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "HTR2C", 
          "name": "5-hydroxytryptamine receptor 2C"
        }, 
        "id": "ENSG00000147246"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.056668315192743776, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.056668315192743776, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 9.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 10.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 9.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000147246-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DRD1", 
          "name": "dopamine receptor D1"
        }, 
        "id": "ENSG00000184845"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05373049472296665, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05373049472296665, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 27.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 28.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 27.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000184845-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DRD4", 
          "name": "dopamine receptor D4"
        }, 
        "id": "ENSG00000069696"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05190115192743765, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05190115192743765, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 9.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 85.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 94.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 9.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 85.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000069696-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN2D", 
          "name": "glutamate ionotropic receptor NMDA type subunit 2D"
        }, 
        "id": "ENSG00000105464"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05136666666666667, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05136666666666667, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 3.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 49.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 3.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000105464-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADORA2A", 
          "name": "adenosine A2a receptor"
        }, 
        "id": "ENSG00000128271"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0433, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0433, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 11.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 13.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 11.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000128271-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN2A", 
          "name": "glutamate ionotropic receptor NMDA type subunit 2A"
        }, 
        "id": "ENSG00000183454"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.043037111111111116, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.043037111111111116, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 5.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 51.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 5.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000183454-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CHRNA4", 
          "name": "cholinergic receptor nicotinic alpha 4 subunit"
        }, 
        "id": "ENSG00000101204"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0424, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0424, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 6.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 8.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 6.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000101204-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SLC6A2", 
          "name": "solute carrier family 6 member 2"
        }, 
        "id": "ENSG00000103546"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0388, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0388, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 4.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 6.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 4.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000103546-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "OPRM1", 
          "name": "opioid receptor mu 1"
        }, 
        "id": "ENSG00000112038"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0354, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0354, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000112038-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DRD5", 
          "name": "dopamine receptor D5"
        }, 
        "id": "ENSG00000169676"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.028800000000000006, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.028800000000000006, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000169676-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN2C", 
          "name": "glutamate ionotropic receptor NMDA type subunit 2C"
        }, 
        "id": "ENSG00000161509"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.028399999999999998, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.028399999999999998, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 47.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000161509-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SNAP25", 
          "name": "synaptosome associated protein 25"
        }, 
        "id": "ENSG00000132639"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.020100000000000003, 
          "rna_expression": 0.015137822738633927, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.015137822738633927, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.020100000000000003, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 3.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 6.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 3.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000132639-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN1", 
          "name": "glutamate ionotropic receptor NMDA type subunit 1"
        }, 
        "id": "ENSG00000176884"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.023233333333333335, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.023233333333333335, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 3.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 49.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 3.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000176884-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIA1", 
          "name": "glutamate ionotropic receptor AMPA type subunit 1"
        }, 
        "id": "ENSG00000155511"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.022175000000000004, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.022175000000000004, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 4.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 8.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 12.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 4.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 8.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000155511-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIA2", 
          "name": "glutamate ionotropic receptor AMPA type subunit 2"
        }, 
        "id": "ENSG00000120251"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.019700000000000002, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.019700000000000002, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 8.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 10.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 8.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000120251-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIA4", 
          "name": "glutamate ionotropic receptor AMPA type subunit 4"
        }, 
        "id": "ENSG00000152578"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0152, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0152, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 8.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 9.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 8.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000152578-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA2", 
          "name": "gamma-aminobutyric acid type A receptor alpha2 subunit"
        }, 
        "id": "ENSG00000151834"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.012278329164704007, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.012278329164704007, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000151834-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CHRM3", 
          "name": "cholinergic receptor muscarinic 3"
        }, 
        "id": "ENSG00000133019"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.01053902624865943, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.01053902624865943, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 7.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 8.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 7.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000133019-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA1", 
          "name": "gamma-aminobutyric acid type A receptor alpha1 subunit"
        }, 
        "id": "ENSG00000022355"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.009865954443073855, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.009865954443073855, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000022355-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN1A", 
          "name": "sodium voltage-gated channel alpha subunit 1"
        }, 
        "id": "ENSG00000144285"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.007915329459833672, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.007915329459833672, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000144285-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN2A", 
          "name": "sodium voltage-gated channel alpha subunit 2"
        }, 
        "id": "ENSG00000136531"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.007774831156001867, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.007774831156001867, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000136531-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIA3", 
          "name": "glutamate ionotropic receptor AMPA type subunit 3"
        }, 
        "id": "ENSG00000125675"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.006566410619657735, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.006566410619657735, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 8.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 9.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 8.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000125675-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN5A", 
          "name": "sodium voltage-gated channel alpha subunit 5"
        }, 
        "id": "ENSG00000183873"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.004, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.004, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000183873-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA6", 
          "name": "gamma-aminobutyric acid type A receptor alpha6 subunit"
        }, 
        "id": "ENSG00000145863"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000145863-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA5", 
          "name": "gamma-aminobutyric acid type A receptor alpha5 subunit"
        }, 
        "id": "ENSG00000186297"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000186297-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRQ", 
          "name": "gamma-aminobutyric acid type A receptor theta subunit"
        }, 
        "id": "ENSG00000268089"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000268089-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SV2A", 
          "name": "synaptic vesicle glycoprotein 2A"
        }, 
        "id": "ENSG00000159164"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000159164-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN9A", 
          "name": "sodium voltage-gated channel alpha subunit 9"
        }, 
        "id": "ENSG00000169432"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000169432-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRB1", 
          "name": "gamma-aminobutyric acid type A receptor beta1 subunit"
        }, 
        "id": "ENSG00000163288"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000163288-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADRA2A", 
          "name": "adrenoceptor alpha 2A"
        }, 
        "id": "ENSG00000150594"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000150594-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA4", 
          "name": "gamma-aminobutyric acid type A receptor alpha4 subunit"
        }, 
        "id": "ENSG00000109158"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000109158-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "OPRK1", 
          "name": "opioid receptor kappa 1"
        }, 
        "id": "ENSG00000082556"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000082556-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRE", 
          "name": "gamma-aminobutyric acid type A receptor epsilon subunit"
        }, 
        "id": "ENSG00000102287"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000102287-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADRB1", 
          "name": "adrenoceptor beta 1"
        }, 
        "id": "ENSG00000043591"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000043591-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN3A", 
          "name": "sodium voltage-gated channel alpha subunit 3"
        }, 
        "id": "ENSG00000153253"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000153253-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "HRH1", 
          "name": "histamine receptor H1"
        }, 
        "id": "ENSG00000196639"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000196639-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN10A", 
          "name": "sodium voltage-gated channel alpha subunit 10"
        }, 
        "id": "ENSG00000185313"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000185313-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRB3", 
          "name": "gamma-aminobutyric acid type A receptor beta3 subunit"
        }, 
        "id": "ENSG00000166206"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000166206-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRP", 
          "name": "gamma-aminobutyric acid type A receptor pi subunit"
        }, 
        "id": "ENSG00000094755"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000094755-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADRB3", 
          "name": "adrenoceptor beta 3"
        }, 
        "id": "ENSG00000188778"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000188778-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CLCN2", 
          "name": "chloride voltage-gated channel 2"
        }, 
        "id": "ENSG00000114859"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000114859-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRA3", 
          "name": "gamma-aminobutyric acid type A receptor alpha3 subunit"
        }, 
        "id": "ENSG00000011677"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000011677-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRD", 
          "name": "gamma-aminobutyric acid type A receptor delta subunit"
        }, 
        "id": "ENSG00000187730"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000187730-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CHRNB2", 
          "name": "cholinergic receptor nicotinic beta 2 subunit"
        }, 
        "id": "ENSG00000160716"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 6.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 6.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 6.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000160716-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "OPRD1", 
          "name": "opioid receptor delta 1"
        }, 
        "id": "ENSG00000116329"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000116329-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN7A", 
          "name": "sodium voltage-gated channel alpha subunit 7"
        }, 
        "id": "ENSG00000136546"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000136546-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN8A", 
          "name": "sodium voltage-gated channel alpha subunit 8"
        }, 
        "id": "ENSG00000196876"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000196876-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN11A", 
          "name": "sodium voltage-gated channel alpha subunit 11"
        }, 
        "id": "ENSG00000168356"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000168356-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CHRM1", 
          "name": "cholinergic receptor muscarinic 1"
        }, 
        "id": "ENSG00000168539"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 77.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 77.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 77.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000168539-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADRA2C", 
          "name": "adrenoceptor alpha 2C"
        }, 
        "id": "ENSG00000184160"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000184160-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CHRM2", 
          "name": "cholinergic receptor muscarinic 2"
        }, 
        "id": "ENSG00000181072"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 7.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 7.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 7.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000181072-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "MTNR1B", 
          "name": "melatonin receptor 1B"
        }, 
        "id": "ENSG00000134640"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000134640-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN3A", 
          "name": "glutamate ionotropic receptor NMDA type subunit 3A"
        }, 
        "id": "ENSG00000198785"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 46.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000198785-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRB2", 
          "name": "gamma-aminobutyric acid type A receptor beta2 subunit"
        }, 
        "id": "ENSG00000145864"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000145864-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GRIN3B", 
          "name": "glutamate ionotropic receptor NMDA type subunit 3B"
        }, 
        "id": "ENSG00000116032"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 46.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 46.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 46.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000116032-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRG1", 
          "name": "gamma-aminobutyric acid type A receptor gamma1 subunit"
        }, 
        "id": "ENSG00000163285"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000163285-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADRA2B", 
          "name": "adrenoceptor alpha 2B"
        }, 
        "id": "ENSG00000274286"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000274286-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CACNA1B", 
          "name": "calcium voltage-gated channel subunit alpha1 B"
        }, 
        "id": "ENSG00000148408"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000148408-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRG2", 
          "name": "gamma-aminobutyric acid type A receptor gamma2 subunit"
        }, 
        "id": "ENSG00000113327"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000113327-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "MTNR1A", 
          "name": "melatonin receptor 1A"
        }, 
        "id": "ENSG00000168412"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000168412-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "GABRG3", 
          "name": "gamma-aminobutyric acid type A receptor gamma3 subunit"
        }, 
        "id": "ENSG00000182256"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000182256-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SCN4A", 
          "name": "sodium voltage-gated channel alpha subunit 4"
        }, 
        "id": "ENSG00000007314"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 1.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 1, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 2.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000007314-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "HTR2A", 
          "name": "5-hydroxytryptamine receptor 2A"
        }, 
        "id": "ENSG00000102468"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.058419929440193516, 
          "rna_expression": 0.008316694551882293, 
          "genetic_association": 0.0804580585212159, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.9652777777777777, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.9924031890887068, 
        "datasources": {
          "expression_atlas": 0.008316694551882293, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.058419929440193516, 
          "gwas_catalog": 0.0804580585212159, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.9652777777777777, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 26.0, 
          "rna_expression": 1.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 4.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 32.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 26.0, 
          "gwas_catalog": 1.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 4.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000102468-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "PLA2G6", 
          "name": "phospholipase A2 group VI"
        }, 
        "id": "ENSG00000184381"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06024388350001771, 
          "rna_expression": 0.0, 
          "genetic_association": 0.8921694444444442, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.9072304153194487, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.8921694444444442, 
          "europepmc": 0.06024388350001771, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 11.0, 
          "rna_expression": 0.0, 
          "genetic_association": 5.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 16.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 5.0, 
          "europepmc": 11.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000184381-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "BST1", 
          "name": "bone marrow stromal cell antigen 1"
        }, 
        "id": "ENSG00000109743"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0541980809168308, 
          "rna_expression": 0.0, 
          "genetic_association": 0.8810804274569628, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8946299476861705, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0541980809168308, 
          "gwas_catalog": 0.8810804274569628, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 16.0, 
          "rna_expression": 0.0, 
          "genetic_association": 5.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 21.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 16.0, 
          "gwas_catalog": 5.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000109743-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "HRH3", 
          "name": "histamine receptor H3"
        }, 
        "id": "ENSG00000101180"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05468866666666667, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.875, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8886721666666667, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05468866666666667, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.875, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 6.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 8.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 6.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000101180-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "PINK1", 
          "name": "PTEN induced putative kinase 1"
        }, 
        "id": "ENSG00000158828"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.8856944444444443, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8856944444444443, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.8856944444444443, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 3.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000158828-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "TMEM175", 
          "name": "transmembrane protein 175"
        }, 
        "id": "ENSG00000127419"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.032400000000000005, 
          "rna_expression": 0.0, 
          "genetic_association": 0.8590973945801457, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8671973945801457, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.032400000000000005, 
          "gwas_catalog": 0.8590973945801457, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 2.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 5.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 2.0, 
          "gwas_catalog": 3.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000127419-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "DNAJC6", 
          "name": "DnaJ heat shock protein family (Hsp40) member C6"
        }, 
        "id": "ENSG00000116675"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0421, 
          "rna_expression": 0.009003258954280093, 
          "genetic_association": 0.8312499999999999, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8427753621060311, 
        "datasources": {
          "expression_atlas": 0.009003258954280093, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.8312499999999999, 
          "europepmc": 0.0421, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 3.0, 
          "rna_expression": 1.0, 
          "genetic_association": 2.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 6.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 2.0, 
          "europepmc": 3.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000116675-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "MCCC1", 
          "name": "methylcrotonoyl-CoA carboxylase 1"
        }, 
        "id": "ENSG00000078070"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.04760933333333334, 
          "rna_expression": 0.0, 
          "genetic_association": 0.8160674228033815, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8279697561367149, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.04760933333333334, 
          "gwas_catalog": 0.8160674228033815, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 6.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 9.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 6.0, 
          "gwas_catalog": 3.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000078070-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "MAPT", 
          "name": "microtubule associated protein tau"
        }, 
        "id": "ENSG00000186868"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06871917823889225, 
          "rna_expression": 0.0, 
          "genetic_association": 0.770844771233179, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.15777593333333334, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.8179242188152781, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.15777593333333334, 
          "eva": 0.0, 
          "europepmc": 0.06871917823889225, 
          "gwas_catalog": 0.770844771233179, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 96.0, 
          "rna_expression": 0.0, 
          "genetic_association": 2.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 5.0, 
          "affected_pathway": 0.0
        }, 
        "total": 103.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 5.0, 
          "eva": 0.0, 
          "europepmc": 96.0, 
          "gwas_catalog": 2.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000186868-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CACNA1C", 
          "name": "calcium voltage-gated channel subunit alpha1 C"
        }, 
        "id": "ENSG00000151067"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0348, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7809222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0348, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 4.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000151067-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADORA1", 
          "name": "adenosine A1 receptor"
        }, 
        "id": "ENSG00000163485"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0152, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7760222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0152, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 4.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000163485-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADORA3", 
          "name": "adenosine A3 receptor"
        }, 
        "id": "ENSG00000282608"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.009818768376050339, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7746769143162349, 
        "datasources": {
          "expression_atlas": 0.009818768376050339, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 1.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 4.0, 
        "datasources": {
          "expression_atlas": 1.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000282608-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CACNA1F", 
          "name": "calcium voltage-gated channel subunit alpha1 F"
        }, 
        "id": "ENSG00000102001"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7722222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000102001-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CACNA1S", 
          "name": "calcium voltage-gated channel subunit alpha1 S"
        }, 
        "id": "ENSG00000081248"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7722222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000081248-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CACNA1D", 
          "name": "calcium voltage-gated channel subunit alpha1 D"
        }, 
        "id": "ENSG00000157388"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7722222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000157388-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "ADORA2B", 
          "name": "adenosine A2b receptor"
        }, 
        "id": "ENSG00000170425"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.7722222222222223, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7722222222222223, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.7722222222222223, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 3.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 3.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000170425-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "HTR1A", 
          "name": "5-hydroxytryptamine receptor 1A"
        }, 
        "id": "ENSG00000178394"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06567647302685427, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.75, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7664191182567136, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.06567647302685427, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.75, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 35.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 2.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 37.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 35.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 2.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000178394-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "WNT3", 
          "name": "Wnt family member 3"
        }, 
        "id": "ENSG00000108379"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.028800000000000006, 
          "rna_expression": 0.0, 
          "genetic_association": 0.7564448993975896, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.7636448993975896, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.028800000000000006, 
          "gwas_catalog": 0.7564448993975896, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 4.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 5.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 4.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000108379-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "NUCKS1", 
          "name": "nuclear casein kinase and cyclin dependent kinase substrate 1"
        }, 
        "id": "ENSG00000069275"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0352, 
          "rna_expression": 0.0, 
          "genetic_association": 0.702057565656647, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.710857565656647, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0352, 
          "gwas_catalog": 0.702057565656647, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 1.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 4.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 1.0, 
          "gwas_catalog": 3.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000069275-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "NSF", 
          "name": "N-ethylmaleimide sensitive factor, vesicle fusing ATPase"
        }, 
        "id": "ENSG00000073969"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.696075762107709, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.696075762107709, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.696075762107709, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 3.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 3.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000073969-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CCDC62", 
          "name": "coiled-coil domain containing 62"
        }, 
        "id": "ENSG00000130783"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05120809977324263, 
          "rna_expression": 0.0, 
          "genetic_association": 0.6642281070829918, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.6770301320263025, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05120809977324263, 
          "gwas_catalog": 0.6642281070829918, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 7.0, 
          "rna_expression": 0.0, 
          "genetic_association": 2.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 9.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 7.0, 
          "gwas_catalog": 2.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000130783-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "CNTN1", 
          "name": "contactin 1"
        }, 
        "id": "ENSG00000018236"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.65, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.65, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.65, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 1.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000018236-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "PARK2", 
          "name": "parkin RBR E3 ubiquitin protein ligase"
        }, 
        "id": "ENSG00000185345"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.06860267656895774, 
          "rna_expression": 0.0, 
          "genetic_association": 0.6245659722222222, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.6321884918409952, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.5, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.06860267656895774, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 0.49826388888888884, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 148.0, 
          "rna_expression": 0.0, 
          "genetic_association": 5.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 153.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 1.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 148.0, 
          "gwas_catalog": 0.0, 
          "intogen": 0.0, 
          "uniprot": 4.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000185345-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "RIT2", 
          "name": "Ras like without CAAX 2"
        }, 
        "id": "ENSG00000152214"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.05327508679768204, 
          "rna_expression": 0.0, 
          "genetic_association": 0.6181925756315331, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.6315113473309536, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.05327508679768204, 
          "gwas_catalog": 0.6181925756315331, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 10.0, 
          "rna_expression": 0.0, 
          "genetic_association": 3.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 13.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 10.0, 
          "gwas_catalog": 3.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000152214-EFO_0002508"
    }, 
    {
      "target": {
        "gene_info": {
          "symbol": "SPPL2C", 
          "name": "signal peptide peptidase like 2C"
        }, 
        "id": "ENSG00000185294"
      }, 
      "association_score": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 0.631067674779749, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "overall": 0.631067674779749, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 0.631067674779749, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "is_direct": true, 
      "disease": {
        "efo_info": {
          "therapeutic_area": {
            "labels": [
              "nervous system disease"
            ], 
            "codes": [
              "EFO_0000618"
            ]
          }, 
          "path": [
            [
              "EFO_0000618", 
              "EFO_0002508"
            ], 
            [
              "EFO_0000618", 
              "EFO_0005772", 
              "EFO_0002508"
            ]
          ], 
          "label": "Parkinson's disease"
        }, 
        "id": "EFO_0002508"
      }, 
      "evidence_count": {
        "datatypes": {
          "literature": 0.0, 
          "rna_expression": 0.0, 
          "genetic_association": 1.0, 
          "somatic_mutation": 0.0, 
          "known_drug": 0.0, 
          "animal_model": 0.0, 
          "affected_pathway": 0.0
        }, 
        "total": 1.0, 
        "datasources": {
          "expression_atlas": 0.0, 
          "gene2phenotype": 0.0, 
          "uniprot_literature": 0.0, 
          "phenodigm": 0.0, 
          "eva": 0.0, 
          "europepmc": 0.0, 
          "gwas_catalog": 1.0, 
          "intogen": 0.0, 
          "uniprot": 0.0, 
          "chembl": 0.0, 
          "cancer_gene_census": 0.0, 
          "reactome": 0.0, 
          "eva_somatic": 0.0, 
          "disgenet": 0.0
        }
      }, 
      "id": "ENSG00000185294-EFO_0002508"
    }
  ], 
  "size": 100
}

Run through all the targets and identify those we're interested in, adding them to a Pandas DataFrame


In [55]:
df = pd.DataFrame()

for target in output['data']:
    
    # If the target is in our list then add it to the DataFrame
    if target['target']['gene_info']['symbol'] in mytargets:

        # Add all the association scores in one hit
        s = pd.Series(target['association_score']['datatypes'])
        # Append the overall score
        s['overall'] = target['association_score']['overall']
        # Use the target as the series name
        s.name = str(target['target']['gene_info']['symbol'])
        # Append the series to our DataFrame
        df = df.append(s, ignore_index=False)

        
# Reorder and rename columns to match OpenTargets viz
df = df.reindex(columns=['overall','genetic_association','somatic_mutation','known_drug','affected_pathway','rna_expression','literature','animal_model'])
df.columns = ['Association score', 'Genetic associations', 'Somatic mutations', 'Drugs', 'Affected pathways', 'RNA expression', 'Text mining', 'Animal models']

Now we have just the data we're interested in, lets see which of our targets have associations in OpenTargets and which don't


In [56]:
print "Targets that have an association to " + disease + ":"
print df.index.tolist()
print
print "Targets that had no recorded association in the top " + str(maxresults) + " results returned for disease " + disease + ":"
print list(set(mytargets)-set(df.index))


Targets that have an association to EFO_0002508:
['DRD2', 'DRD4', 'GRIN1', 'PINK1']

Targets that had no recorded association in the top 100 results returned for disease EFO_0002508:
['BERT', 'ANG', 'FUS', 'FRED']

Lets print the list of matching targets and their scores


In [57]:
print df


       Association score  Genetic associations  Somatic mutations  Drugs  \
DRD2            1.000000              0.000000                0.0    1.0   
DRD4            1.000000              0.000000                0.0    1.0   
GRIN1           1.000000              0.000000                0.0    1.0   
PINK1           0.885694              0.885694                0.0    0.0   

       Affected pathways  RNA expression  Text mining  Animal models  
DRD2                 0.0             0.0     0.074606       0.234713  
DRD4                 0.0             0.0     0.051901       0.000000  
GRIN1                0.0             0.0     0.023233       0.000000  
PINK1                0.0             0.0     0.000000       0.000000  

Plot this DataFrame as a simple heatmap using the Seaborn vizualization library


In [58]:
%matplotlib inline
sns.set()
ax = sns.heatmap(df, cmap="Blues", annot=True, linewidths=2)
sns.plt.show()



In [ ]: