Changes between Version 62 and Version 63 of ImplementationBootcamp

Show
Ignore:
Timestamp:
2010/02/12 11:14:31 (14 years ago)
Author:
RutgerVos
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ImplementationBootcamp

    v62 v63  
    3535 
    3636Protege 3 and Protege 4 are "philosophically" different, and represent a split in the global ontology community that runs roughly along the lines of the "OBO-fans" and the "OWL-DL-fans" (that's over-simplifying the situation, but I think it is by-and-large correct).  The two development communities had different target-audiences in mind when developing the software, and those audiences are reflected in the decisions made.  Protege 4 uses the Manchester OWL API "under the hood", and is somewhat more capable of manipulating OWL than Protege 3 is.  On the other hand, if you are planning to use Protege to generate RDF data ("individuals") manually, then Protege 3 might be more useful for you. 
     37 
     38=== What are some other semantic web initiatives I should know about? === 
     39 
     40Aside from initiatives that were explicitly mentioned at the hackathon, here are some other ones not to ignore: 
     41 * A number of biomedical ontologies are collected by the [http://www.bioontology.org/BioPortal NCBO BioPortal].  
     42 * For evolutionary biologists and phyloinformaticists there is [http://www.evolutionaryontology.org CDAO],  
     43 * for taxonomists and biodiversity informaticists there is the [http://wiki.tdwg.org/twiki/bin/view/TAG/TDWGOntology TDWG ontology] and [http://wiki.tdwg.org/twiki/bin/view/DarwinCore/WebHome DarwinCore].  
     44If you are ontologizing your own problem domain, make an effort to align your terms with these efforts. The idea is that we're building one big graph that connects everything! 
     45 
     46=== How do I align ontologies? === 
     47 
     48At the [http://www.evoio.org/wiki/VoCamp1 VoCamp/TDWG satellite meeting in Montpellier (2009)], a [http://www.evoio.org/wiki/Integrating_Ontologies working group devoted to this topic] developed the following recommendations: 
     49 
     50For ontology integration, our work has led us to conclude that: 
     51 * instance data should be fully ontologized. For example, our phenoscape use case could not be completed because phenoscape uses XML literals to express trait post-composition. These traits were consequently inaccessible for the purpose of data integration. 
     52 * ontologies should be designed as reusable modules rather than monolithic artifacts. Aligning [http://www.evolutionaryontology.org/ CDAO] with [http://wiki.tdwg.org/twiki/bin/view/DarwinCore/WebHome DarwinCore] was relatively easy because DarwinCore doesn't have a lot of structure (which is a good thing from the perspective of re-use). (although DarwinCore still needs to be ontologized). 
     53 * data integration is most easily achieved by developing small adaptor ontologies rather than merging of large (and potentially well-established and "stable") artifacts. Merging large ontologies has a greater potential to have irreconcilable incongruities. Adapting smaller ontologies requires immediate reconciliation, but insulates the practitioner from irrelevant inconsistencies. Implementations are likely to be more efficient and scalable. Nevertheless, if two domains have significant overlap, it is probably better to merge them, reconcile the inconsistencies and thereby decrease the overall noise subsequent use of the domain.  
     54 * URIs (URLs) for terms should be carefully constructed, predictable and stabilized, perhaps using PURLs. For example, several queries failed to produce expected results due to omission of `www` prefixes or `#` suffixes in URLs. 
     55 * several tools (Homonto developed by [http://bgee.unil.ch/bgee/bgee?page=about BGee], [http://bmir.stanford.edu/file_asset/index.php/1463/BMIR-2009-1364.pdf LOOM]) and a lot of research ([http://ontologymatching.org/ Ontology Matching]) has already gone into the problem of ontology alignment. However, expert knowledge for manual alignment is often still necessary. 
    3756 
    3857=== In my generated RDF, what namespace URI do I use to prefix my terms? ===