Google BigQuery
What is Google BigQuery?
BigQuery access points
Example BigQuery SQL queries
SELECT
associations.targetId AS target_id,
targets.approvedSymbol AS target_approved_symbol,
associations.diseaseId AS disease_id,
diseases.name AS disease_name,
associations.score AS overall_association_score
FROM
`open-targets-prod.platform.association_overall_direct` AS associations
JOIN
`open-targets-prod.platform.disease` AS diseases
ON
associations.diseaseId = diseases.id
JOIN
`open-targets-prod.platform.target` AS targets
ON
associations.targetId = targets.id
WHERE
associations.diseaseId='EFO_0000676'
ORDER BY
associations.score DESCTutorials and how-to guides
Last updated
Was this helpful?