29
loading...
This website collects cookies to deliver better user experience
Do people that have this mutation, also have some type of prevalence for a specific disease?
billionDollarTarget
and bestTarget
, which overall have a high association score, in other words, they are strongly linked to the disease that David's team is interested in. Below we’ll see how TypeDB can be used to find targets that don’t rank highly on Open Targets, but are still indirectly modulating the disease and are therefore potentially high-value targets to explore. define
gene sub fully-formed-anatomical-structure,
owns gene-symbol,
owns gene-name,
plays gene-disease-association:associated-gene;
disease sub pathological-function,
owns disease-name,
owns disease-id,
owns disease-type,
plays gene-disease-association:associated-disease;
protein sub chemical,
owns uniprot-id,
owns uniprot-entry-name,
owns uniprot-symbol,
owns uniprot-name,
owns ensembl-protein-stable-id,
owns function-description,
plays protein-disease-association:associated-protein;
protein-disease-association sub relation,
relates associated-protein,
relates associated-disease;
gene-disease-association sub relation,
owns disgenet-score,
relates associated-gene,
relates associated-disease;
gene-disease-inference
, with an attribute order:1
to denote that it’s a direct relation. The query looks like this:match
$d isa disease, has disease-name "Disease";
$r ($gene, $d) isa gene-disease-inference, has order 1;
get $r, $d, $gene;
billionDollarTarget
, the bestTarget, and the youWillNeverGuessTarget
are linked to Disease
. We also see that these three targets are of order: 1
, which indicates a direct and previously known association between the disease and the genes. However, the goal is to find novel targets. gene-disease-inference
relation with order: 2
, but explicitly excludes those that already are connected with a gene-disease-inference relation with order:1
:match
$d isa disease, has disease-name "Disease";
$r ($gene, $d) isa gene-disease-inference, has order 2;
not {($gene, $d) isa gene-disease-inference, has order 1;};
get $r, $d, $gene;
whatCouldIBeTarget
, awesomeTarget
, and thatTarget
. All these are targets connected to Disease
through a gene-disease-inference
with order:2
.If you are not familiar with TypeDB Workbase, you can right-click one of the inferred relations and select “Explain” in the dropdown. This will explain those inferences and tell you how these targets are connected to our disease via typed roles, played by the targets.
deadTarget
, we see that this target is part of the same gene family as youWillNeverGuessTarget
with order: 1
. This inference was made possible through a rule, which allows us to infer new data based on existing data. In this case, we found a previously unknown indirect interaction between two targets.awesomeTarget
and bestTarget
, we see that those inferences are based on a protein-to-protein interaction, which connects to the whatCouldIBeTarget
. If we explain that relation, we see that it is connected to the billionDollarTarget
via a gene-disease-association
, potentially sharing the same variant to the disease. awesomeTarget
and thatTarget
appear in the Open Targets database for the disease of interest, they ranked very low. That means they had some link to that disease, but not a strong one. TypeDB uncovered new evidence that suggests those targets could be higher ranked.