Changes between Version 15 and Version 16 of UseCases
- Timestamp:
- 2010/02/09 16:04:05 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UseCases
v15 v16 49 49 * Paul (biological hypothesis formulation) 50 50 * predict PPI using homologs (PPI in yeast -> homolog in human) see [http://www.biomedcentral.com/1471-2164/9/426] 51 * workflow overview: could use homolog, protein domain and protein-protein interaction resources (not all currently in one data warehouse so Sem Web could help) 51 * workflow overview: could use homolog, protein domain and protein-protein interaction resources (not all currently in one data warehouse so Sem Web could help). In brackets are the values for a particular query, Inhibitor of Growth 1 (ING1). 52 52 [[Image(http://www.biomedcentral.com/content/figures/1471-2164-9-426-1.jpg)]] 53 53 54 * The query in Prolog would be something like :54 * The query in Prolog would be something like (simplified so it's depending only on known protein domains, whereas in the publication we built our own domain models): 55 55 56 56 probableNovelInteractors(HumanGene1, HumanGene2) :- hasHomolog(HumanGene1, YeastGene1), hasInteractorFromDB(YeastGene1, YeastGene2), hasHomolog(YeastGene2, HumanGene2), hasHomolog(HumanGene2, OtherModelOrganismGene2), hasHomolog(YeastGene2, OtherModelOrganismGene2), hasProteinDomain(HumanGene1, TargetDomain), hasProteinDomain(OtherModelOrganismGene1, TargetDomain), … … 65 65 66 66 * Now we just need the predicates to exists in various SPARQL endpoints to give use the RDF Facts with predicates corresponding to hasHomolog, hasInteractorFromDB, and hasProteinDomain. Then we will use SHARE/SADI to create queries in SPARQL than span multiple services. :-) 67 68 67 68