Hello,
I was doing this GraphQL query :
Variables: {“diseaseId”: “MONDO_0007254”}
query BreastCancerTargets($diseaseId: String!) {
disease(efoId: $diseaseId) {
id
name
associatedTargets(page: { size: 10, index: 0 }) {
count
rows {
target {
id
approvedSymbol
approvedName
biotype
}
score
datatypeScores {
id
score
}
}
}
}
}
And I got the following results:
https://api.platform.opentargets.org/api/v4/graphql/browser?query=query%20targetInfo%20%7B%0A%20%20target%28ensemblId%3A%20%22ENSG00000169083%22%29%20%7B%0A%20%20%20%20id%0A%20%20%20%20approvedSymbol%0A%20%20%20%20biotype%0A%20%20%20%20geneticConstraint%20%7B%0A%20%20%20%20%20%20constraintType%0A%20%20%20%20%20%20exp%0A%20%20%20%20%20%20obs%0A%20%20%20%20%20%20score%0A%20%20%20%20%20%20oe%0A%20%20%20%20%20%20oeLower%0A%20%20%20%20%20%20oeUpper%0A%20%20%20%20%7D%0A%20%20%20%20tractability%20%7B%0A%20%20%20%20%20%20label%0A%20%20%20%20%20%20modality%0A%20%20%20%20%20%20value%0A%20%20%20%20%7D%0A%20%20%7D%0A%7D%0A
But when I compare it with opentargets standalone latest release, that is suppose to be the same as the graphql api, i get slightly different overall score results:
Comparison:
Please would it be possible to know why?


