<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink">
  <front>
    <journal-meta />
    <article-meta>
      <title-group>
        <article-title>Representing Phenotypes in OWL</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Chris Mungall</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Georgios Gkoutos</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Nicole Washington</string-name>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Suzanna Lewis</string-name>
        </contrib>
      </contrib-group>
      <abstract>
        <p>Accurate representation of phenotypes using ontologies is important in biology and biomedicine. This paper describes the OWL translation of our methodology for representing phenotypes using ontologies in the OBO Foundry.</p>
      </abstract>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>-</title>
      <p>In simple terms, a phenotype is a collection of characteristics that arise through
the expression of the genes of an organism, in an environment. Some examples
of phenotypes are the red eyes of a typical fruitfly, Drosophila melanogaster; the
length of a body part such as the tail of a mouse; high blood pressure in the
arteries of a human, sensitivity to a chemical or to light; reduced mass of an
organ or part of an organism such as bone.</p>
      <p>In biology, we are often interested in how variations in genotype and
environment can lead to variations in phenotype. There is a wealth of research to
draw from, but much of the knowledge is currently encoded in natural language
and free text in the literature and biological databases[?] - if this knowledge can
be captured using ontologies and ontological formalisms we increase the range
of computational methods that can be used to analyse this data[?].</p>
      <p>This paper describes the OWL translation of a formalism for representing
phenotypes making use of the ontologies that comprise Open Bio-Ontologies
Foundry (http://www.obofoundry.org). Many of these ontologies such as the
Gene Ontology[?], the Foundational Model of Anatomy[?] and the Cell
Ontology[?] represent canonical biology, which is to say the biology of “normal”,
“typical” or healthy organisms. We use these ontologies as building blocks that
can be combined with an ontology of qualities to construct descriptions of
phenotypes, many of which deviate from canonical biology. This methodology can
be used in a variety of different kinds of investigations.</p>
      <p>The reader of this paper should be aware that the end-user of the software
systems and databases built around the formalism presented do not work
directly at level of OWL constructs, or at their OBO-Formalism equivalents. They
typically interact via intermediate representations and user interfaces such as
Phenote1 - more details can be found on the phenotype ontology website2. We
present the OWL version of the formalism in order to give it a grounding in logic,
and as a means of leveraging OWL-based tools and reasoning engines, although
space dictates we do not discuss these applications.
1 http://www.phenote.org
2 http://www.phenotypeontology.org
1.1</p>
    </sec>
    <sec id="sec-2">
      <title>Conventions Used</title>
      <p>We use the Manchester OWL syntax [?] for writing our OWL representations3.
Most of the OWL descriptions in this paper can also be translated to
OBOFormat equivalents; we do not include these here for brevity, details can be
found at http://tinyurl.com/326feg and the OboInOwl page4.</p>
      <p>Our examples are all drawn from OBO Foundry Ontologies[?] for the most
part. OBO ontologies uniquely identify classes via a numeric identifier, but in the
examples given we replace these with class labels in order to enhance readability.
We do not always specify the ontology used in the examples given, the full list
can be found on the OBO Foundry website5.
2</p>
      <sec id="sec-2-1">
        <title>OWL Representation</title>
        <p>The biological and biomedical literature contains descriptions of phenotypes such
as the following:
1. red eye (a typical or wild-type specimen of the fruitfly Drosophila melanogaster
has red eyes.
2. curvature of a wing
3. high blood pressure
4. high glucose concentration in the blood
5. short tail
6. invaginated cell membrane</p>
        <p>How should we go about representing phenotypes such as these in OWL?
We will first review two existing W3C recommendations (instance and class
partitions), and then describe our approach.
2.1</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Enumeration of Individuals</title>
      <p>
        The W3C Working Group note Representing Specified Values in OWL: value
partitions and value sets[?] provides guidelines for two different ways of representing
what it calls specified values: (
        <xref ref-type="bibr" rid="ref1">1</xref>
        ) enumerations of individuals and (
        <xref ref-type="bibr" rid="ref4">2</xref>
        ) partitions
of classes. These “Specified Values” are applicable to organismal phenotypes.
      </p>
      <p>The first method involves subdividing a quality such as curvature into owl
Individuals, such as flat and curved, represented in Manchester Syntax as:</p>
      <sec id="sec-3-1">
        <title>Class: CurvatureValue</title>
      </sec>
      <sec id="sec-3-2">
        <title>EquivalentClass: {flat curved}</title>
      </sec>
      <sec id="sec-3-3">
        <title>Individual: flat TYPE CurvatureValue</title>
      </sec>
      <sec id="sec-3-4">
        <title>Individual: curved TYPE CurvatureValue</title>
        <p>3 http://www.co-ode.org/resources/reference/manchester syntax/
4 http://tinyurl.com/34ddl2
5 http://obofoundry.org</p>
        <p>We may also want to use differentFrom statements to state that flat and
curved are distinct individuals:</p>
      </sec>
      <sec id="sec-3-5">
        <title>Individual: flat</title>
      </sec>
      <sec id="sec-3-6">
        <title>DifferentFrom: curved FunctionalProperty: hasCurvature Range: CurvatureValue</title>
        <p>We can relate individuals to color hues using an OWL functional property6:
So an instance of a curved fruitfly wing7 could be represented as:</p>
      </sec>
      <sec id="sec-3-7">
        <title>Individual: fly-wing-00001 TYPE Wing</title>
      </sec>
      <sec id="sec-3-8">
        <title>Facts: hasCurvature VALUE curved</title>
        <p>or the logically equivalent:</p>
      </sec>
      <sec id="sec-3-9">
        <title>Individual: fly-wing-00001 TYPE (Wing THAT hasCurvature VALUE curved)</title>
        <p>The W3C document notes some problems with this approach, such as the
inability to further partition the values. For example, we could not create fiat
partitions dividing curved into highly curved, mildly curved, etc8. This is a major
disadvantage for representing phenotypes, as multiple levels of partitioning may
be required to accurately represent the biology. On top of the listed problems,
we would also add that this solution is ontologically unsatisfying, as we hold
that these “values” correspond to types (also known as universals) and are
instantiated multiple times in nature, and are best represented as owl Classes, not
owl Individuals.
2.2</p>
      </sec>
    </sec>
    <sec id="sec-4">
      <title>Value Partitions</title>
      <p>The second method described in the W3C technical note involves partitioning
qualities into owl Classes. We can write the same example in Manchester Syntax
as follows:</p>
      <sec id="sec-4-1">
        <title>Class: CurvatureValue</title>
      </sec>
      <sec id="sec-4-2">
        <title>EquivalentClass: Flat OR Curved</title>
        <p>This states that the class CurvatureValue is equivalent to the union of the 2
classes Flat and Curved - this also states the list is closed - there are no other
classes that are also CurvatureValues. We could, however, create subclasses of
Curved.</p>
        <p>In addition we can specify disjointness conditions:
6 for simplicity, we omit treatment of 3D objects that may have surfaces of different</p>
        <p>curvature, and assume any entity has a single curvature
7 Represented in the Fly Anatomy Ontology http://obo.sourceforge.net/cgi-bin/detail.cgi?fly anatomy
8 in this example it may be possible to combine value partitions but this is inherently</p>
        <p>problematic</p>
      </sec>
      <sec id="sec-4-3">
        <title>Disjoint: Flat Curved</title>
        <p>The functional property linking curvature individuals to individuals with
curvature is the same as for the enumeration pattern:</p>
        <p>Manchester Syntax even has a macro feature for conveniently representing
value partitions:</p>
      </sec>
      <sec id="sec-4-4">
        <title>ValuePartition: Curvature hasCurvature [Flat Curved]</title>
        <p>This combines the unionOf axioms with the disjointWith axioms into a handy
syntactic idiom.</p>
        <p>So an instance of a curved fly wing could be represented as:</p>
        <p>It is important to note that an important consequence of this pattern is that
the existence of each individual of type CurvedWing also entails the existence of a
distinct quality individual of type Curved. This is in contrast to the enumeration
pattern, in which there is a single quality individual curved, which is “shared”
by all curved things.</p>
        <p>This gives the class partition pattern various advantages over the
enumeration of individuals pattern. It allows the quality classes to be further partitioned
into more refined classes. We also hold that this pattern is ontologically
preferable, and that distinct quality instances, such as my hair color or the shape of a
particular organ, exist in reality.
2.3</p>
      </sec>
    </sec>
    <sec id="sec-5">
      <title>Qualities and their Bearers</title>
      <p>Our approach, which has been dubbed the “EQ” model, is highly similar to the
class partition pattern described above, but differs in a few key respects. Our
treatment is based on a previously published formal analysis of qualities[?], and
uses an ontology of qualities called PATO[?][?].</p>
      <p>In our formalisation, a phenotype is one or more qualities which are borne
9
by bearer entities in some organism . The relation between a quality and its
bearer entity is one of inherence. An example of an instance of a phenotype is
the particular instance of high curvature inhering in a particular instance of wing
in a particular fruitfly.
9 the phenotype of an organism is influenced by the genetics of that organism,
mediated by the environment; description of these crucial factors are omitted for reasons
of space</p>
      <p>Note that sometimes qualities are referred to as properties, both colloquially
and in the philosophical literature, but we avoid this usage, due to the
contradictory use of the term property within the OWL community to denote what we
would call a relation. Here we also distinguish between instances, the particular
instances in reality, and the individuals that represent them.</p>
      <p>All qualities are linked to their bearers by means of the inherence relation,
which can be represented in OWL as:</p>
      <sec id="sec-5-1">
        <title>FunctionalProperty: inheresIn</title>
      </sec>
      <sec id="sec-5-2">
        <title>Domain: Quality</title>
        <p>Note that this approach has no need of relations such as hasColor (although
these could optionally be added as sub-relations of inheresIn). Rather than
creating distinct class partitions for hasColor, hasShape and so on, we have a single
subclass hierarchy, with all quality classes ultimately inheriting from the root
Quality class.</p>
        <p>We can describe the fly wild-type phenotype high curvature wings using the
class expression:
A-1 Curved that inheresIn some Wing</p>
        <p>We can also describe a curved wing:
A-2 Wing that hasQuality some Curved</p>
        <p>These two expressions are intuitively similar, but crucially distinct, in that
the first represents a quality, and the second represents the three dimensional
object that is the bearer of the quality. The existence of an instance of one entails
the existence of some instance of the other at any given time. Thus either class is
eligible as the description of the phenotype. We choose A-1 as the “normal-form”
for phenotypes.</p>
        <sec id="sec-5-2-1">
          <title>Results</title>
          <p>Our approach is most consistent with the second approach in the W3C note
above, as we use owl Classes to denote our Quality universals. However, we differ
from this approach in that we have no specific need for multiple relations such
as hasColor, hasSize, hasShape and so on. Our ontology of qualities is a single
hierarchy, with all classes a subclass of the root class Quality.</p>
          <p>To support the description of phenotypes, we have developed an ontology of
qualities called PATO10. The ontology is constructed as far as possible according
to OBO Foundry11 principles, with each class in the ontology having a single is a
(subclass) parent. The ontology is maintained in OBO format and is available
from OBO, but is also available in OWL12.</p>
        </sec>
      </sec>
    </sec>
    <sec id="sec-6">
      <title>PATO: An Ontology of Qualities</title>
      <p>The ontology is divided along granular levels [?] [?]. On the one hand we have
physical qualities, such as mass, velocity and color; next we have cellular qualities
such as ploidy (which inheres in a cell or cell nucleus by virtue of the number
of chromosomes it has) and cellular potential (capability of differentiating into
a range of other cell types; finally we have organismal qualities. Note that of
course cells and organisms have physical qualities such as mass, by virtue of the
physical qualities of their subparts. Physics is sufficient to give an account of
10 This originally stood for Phenotype and Trait Ontology. The full name is somewhat
misleading as the classes in the ontology represent qualities, rather than full-blown
phenotypes
11 http://www.obofoundry.org
12 http://purl.org/obo/owl/PATO
physical qualities - however, other qualities are emergent and a description must
be given at a higher level of granularity.</p>
      <p>Although the ontology is developed with the intent of use for phenotypes in
biology and biomedicine, it is our hope that the physical quality sub-hierarchy
of PATO will prove useful in other scientific realms.
3.3</p>
    </sec>
    <sec id="sec-7">
      <title>Relational Qualities</title>
      <p>We follow [?] in distinguishing between monadic and relational qualities. The
former are qualities that inhere in and depend on a single entity. The latter
depend on some additional entity or entity type. For example, shape is a monadic
quality because shapes exist in totality in a single shape-bearing. A quality such
as sensitivity, by contrast, has a single bearer but is always with respect to some
other entity or kind of entity (such as in, for example, sensitivity to sunlight).</p>
      <p>Neuhaus et al[?] represent relational qualities in a first-order logic framework
using an inherence relation with a higher arity - the additional entity universals
are referenced as additional arguments.</p>
      <p>As all relations in OWL are binary, we must introduce an additional relation
to represent relational qualities - we call this the “towards” relation.</p>
      <p>Using this relation we can represent the phenotype skin photosensitivity to
UV light using the class expression:
A-1 Sensitive that towards some UltravioletLight and inheresIn some Skin</p>
      <p>Note this is ontologically unsatisfactory, as any instance of photosensitivity
is with respect to the universal UltravioletLight, rather than any one particular
instance of a light wave or particle bundle. However, for the purposes of DL
reasoning the representation is practical, and a reasoner such as Pellet will correctly
reason that A-1 is subsumed by an expression such as A-2:
A-2 Sensitive that towards some Radiation and inheresIn some Organ</p>
      <p>We could instead use the UltravioletLight class as an individual, as in A-3:
A-3 Sensitive that towards value UltravioletLight and inheresIn some
Skin</p>
      <p>However, this has the undesirable consequence of taking us to OWL Full,
and will result in omissions in the reasoning process.
3.4</p>
    </sec>
    <sec id="sec-8">
      <title>Temporal Durations</title>
      <p>Descriptions of phenotypes may be temporally qualified. The qualities in
question may only inhere in the bearer entity over some interval - for example,
organismal development involves changes in morphology of parts of organisms.
Sometimes the quality may only be observed over a certain interval - for example,
a particular assay of high blood pressure.</p>
      <p>This raises interesting representation issues - all relations in OWL are binary,
and there is no simple way to add a temporal index to binary instance-level
relations, such as the relation between a quality and its bearer. There are a number
of representation patterns for getting around this limitation [?] [?], such as
reifying relations, but unfortunately they are all unsastifactory from an ontological
and practical point of view.</p>
      <p>Consider an portion of tissue, such as the optic placode13, that changes its
shape from flat to curved or invaginated during a specific stage of development.
How do we represent this using binary relations?</p>
      <p>We are unsatisfied with all the solutions afforded us within the constraints of
binary relations - Our current compromise approach would be to represent this
kind of anatomical entity as follows:
A-4 OpticPlacode that hasQuality some (Flat that during some Stage11)
and hasQuality some (Invaginated that during some Stage12)
(note that here we have an object-centered representation rather than
qualitycentered, using the hasQuality relation, the inverse of inheresIn)</p>
      <p>This approach is unsatisfactory because it involves stating artefactual classes
such as “flat during stage 11”. This approach also causes problems when
reasoning, as illustrated below:</p>
      <p>Assume also that Invaginated and Flat are disjoint (a reasonable assumption,
given some fiat[?] quality boundary), and subclasses of Shape</p>
      <sec id="sec-8-1">
        <title>Class: Invaginated</title>
      </sec>
      <sec id="sec-8-2">
        <title>SubClassOf: Shape</title>
      </sec>
      <sec id="sec-8-3">
        <title>DisjointFrom: Flat</title>
        <p>Now we add the restriction that all organism parts have exactly one shape,
as follows14:</p>
      </sec>
      <sec id="sec-8-4">
        <title>Class: OrganismPart</title>
      </sec>
      <sec id="sec-8-5">
        <title>SubClassOf: hasQuality EXACTLY 1 Shape</title>
        <p>However, if flat and invaginated are disjoint classes, and we declare that
each organism part can only assume a single shape, this will result A-4 being
equivalent to the empty set, an undesirable result.</p>
        <p>An alternate representational paradigm involves representing “time-slices” of
three dimensional objects (such as an organism part) at different times. These
slices can then be related via binary relations to qualities that obtain over
intervals. Each slice can then be linked back to the representation of the three
dimensional object. This approach is sometimes called the perdurantist or
4dimensionalist approach, and the time-slices are sometimes called histories or
snapshots.
13 the part of an organism that will develop into the eye
14 the intent is to specify a Qualified Cardinality Constraint, as is allowed in OWL-1.1,
but the authors are not sure if this is the correct for in the Manchester syntax</p>
        <p>For example, we can represent an optic placode whose shape changes between
flat and invaginated during a stage of development using the following class
expression:
A-5 OpticPlacode that hasTimeSlice some (Slice that hasQuality some
Flat and during Stage11) and hasTimeSlice some (Slice that hasQuality
some Invaginated and during Stage12)</p>
        <p>However, this solution is unsatisfactory from both an ontological and a
practical perspective. On the one hand we must introduce additional artefacts, that
have no place in upper ontologies such as BFO[?] and DOLCE. Our commitment
to OBO Foundry principles leads us to reject the existence of unusual entities
such as time-slices. In addition, the time slice paradigm must be anticipated in
all ontologies used, such that for example the domain and range of relations can
be 3D objects or time-slices of 3D objects.</p>
        <p>At best, the above construction is unwieldy and will require specific tool
support if these constructs are to be generally useful.</p>
        <p>Another approach is to reify the relation in question, in this case inheresIn
, modeling it with an OWL class rather than an OWL property. We omit a
discussion of this approach for reasons of space, but we find this solution even
more unsatisfactory.</p>
        <p>An extension to OWL allowing would simplify this problem immensely. For
example, if relations could take a third temporal argument as illustrated in the
following expression:
A-6 Organism that (hasQuality some Flat at Stage11) and (hasQuality
some Invaginated at Stage12)</p>
        <p>The proposed AT operator could be used to index any relation at the class or
instance level in OWL. We recognise that temporal extensions to DL expressivity
would introduce many challenging problems, but we believe that this issue must
be addressed sooner rather than later in order to accurately represent biology.</p>
        <p>One possibility is for 3-ary temporal expression such as the above to be
“compiled down” to standard binary relation oriented description logics bu
automatically introducing artefactual entities such as time-slices “behind the scenes”.
4</p>
        <sec id="sec-8-5-1">
          <title>Discussion</title>
          <p>Representation of and reasoning over phenotypes is of huge importance to the life
sciences and biomedicine. Our methodology for describing phenotypes through
the composition of quality classes with classes of quality-bearers via the inherence
relation works well for a variety of phenotypes, and promotes the reuse of
ontologies in a modular way. The ontology of qualities, PATO, can be used across
a variety of organisms for phenotypes across multiple levels of granularity.</p>
          <p>We find the ability to compose classes using description logic type
expressions useful, and is a representational technique the general life sciences and
biomedical informatics and database communities would find useful in general.
In particular, the elegance of Manchester OWL Syntax renders complex
ontological representations accessible to ordinary mortals15. This is a significant result
for taking OWL out of the ivory tower into the real world. To illustrate this,
here is a class expression involving multiple levels of nesting utilising classes from
multiple ontologies to represent the phenotype high permeability of mitochondrial
cristae in the axons of pyramidal cells in the CA1 hippocampal field:
A-1 HighPermeability that inheresIn some (MitochondrialCristae that partOf
some (Axon that partOf some PyramidalCell that partOf some CA1Field))</p>
          <p>The ability to attach these class expressions to named phenotypes, such as
those that may be found in the Mammalian Phenotype Ontology[?] and the
Plant Trait Ontology[?] will be important for comparing data across organisms,
and we have commenced an effort to create these expressions16.</p>
          <p>We have found that limiting expressions to binary relations has negative
implications for ontologically sound and intuitive representations of biology,
particularly with respect to time.</p>
          <p>For lack of space we did not address various other important topics such as
the representation of experimental assays and quantitative measurements. We
also avoided discussion of representation on the complex relationship between
genotypes, environments and phenotypes. However, we note that the
methodology employed in this paper for representing phenotypes is also applicable to
representing environment types.
5</p>
        </sec>
        <sec id="sec-8-5-2">
          <title>Acknowledgements</title>
          <p>The ideas in this paper arose through discussions with many individuals,
including Fabian Neuhaus, Barry Smith, Alan Rector, Nigam Shah, William Bug,
Mark Gibson, John Day-Richter, Michael Ashburner and the members of the
FlyBase consortium, Monte Westerfield and the members of ZFIN Consortium,
Pankaj Jaiswal and the participants on the obo-phenotype mailing list.</p>
        </sec>
      </sec>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1.
          <string-name>
            <given-names>M.</given-names>
            <surname>Ashburner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. A.</given-names>
            <surname>Ball</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. A.</given-names>
            <surname>Blake</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D.</given-names>
            <surname>Botstein</surname>
          </string-name>
          ,
          <string-name>
            <given-names>H.</given-names>
            <surname>Butler</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Cherry</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. P.</given-names>
            <surname>Davis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>K.</given-names>
            <surname>Dolinski</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S. S.</given-names>
            <surname>Dwight</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. T.</given-names>
            <surname>Eppig</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M. A.</given-names>
            <surname>Harris</surname>
          </string-name>
          ,
          <string-name>
            <given-names>D. P.</given-names>
            <surname>Hill</surname>
          </string-name>
          , L. IsselTarver,
          <string-name>
            <given-names>A.</given-names>
            <surname>Kasarskis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.</given-names>
            <surname>Lewis</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. C.</given-names>
            <surname>Matese</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. E.</given-names>
            <surname>Richardson</surname>
          </string-name>
          ,
          <string-name>
            <given-names>M.</given-names>
            <surname>Ringwald</surname>
          </string-name>
          ,
          <string-name>
            <given-names>G. M.</given-names>
            <surname>Rubin</surname>
          </string-name>
          , and
          <string-name>
            <given-names>G.</given-names>
            <surname>Sherlock</surname>
          </string-name>
          .
          <article-title>Gene ontology: tool for the unification of biology. the gene ontology consortium</article-title>
          .
          <source>Nat Genet</source>
          ,
          <volume>25</volume>
          (
          <issue>1</issue>
          ):
          <fpage>25</fpage>
          -
          <lpage>9</lpage>
          ,
          <year>2000</year>
          .
          <fpage>1061</fpage>
          -4036
          <string-name>
            <given-names>Journal</given-names>
            <surname>Article</surname>
          </string-name>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          <article-title>15 of course, the end-user does not see Manchester Syntax or any other OWL-oriented syntax, they work with intermediate representations and user interfaces such as Phenote</article-title>
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>16 http://tinyurl.com/2o7fnh</mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          2.
          <string-name>
            <given-names>M.</given-names>
            <surname>Ashburner</surname>
          </string-name>
          ,
          <string-name>
            <given-names>C. J.</given-names>
            <surname>Mungall</surname>
          </string-name>
          , and
          <string-name>
            <given-names>S. E.</given-names>
            <surname>Lewis</surname>
          </string-name>
          .
          <article-title>Ontologies for biologists: a community model for the annotation of genomic data</article-title>
          .
          <source>Cold Spring Harb Symp Quant Biol</source>
          ,
          <volume>68</volume>
          :
          <fpage>227</fpage>
          -
          <lpage>35</lpage>
          ,
          <year>2003</year>
          .
          <fpage>0091</fpage>
          -7451
          <string-name>
            <given-names>Journal</given-names>
            <surname>Article Review Review</surname>
          </string-name>
          , Tutorial.
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          3.
          <string-name>
            <given-names>J.</given-names>
            <surname>Bard</surname>
          </string-name>
          ,
          <string-name>
            <given-names>S.Y.</given-names>
            <surname>Rhee</surname>
          </string-name>
          , and
          <string-name>
            <given-names>M.</given-names>
            <surname>Ashburner</surname>
          </string-name>
          .
          <article-title>An ontology for cell types</article-title>
          .
          <source>Genome Biology</source>
          , Manuscript submitted,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          4.
          <string-name>
            <given-names>R.</given-names>
            <surname>Drysdale</surname>
          </string-name>
          .
          <article-title>Phenotypic data in flybase</article-title>
          .
          <source>Brief Bioinform</source>
          ,
          <volume>2</volume>
          (
          <issue>1</issue>
          ):
          <fpage>68</fpage>
          -
          <lpage>80</lpage>
          ,
          <year>2001</year>
          .
          <fpage>1467</fpage>
          - 5463
          <string-name>
            <given-names>Journal</given-names>
            <surname>Article</surname>
          </string-name>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          5.
          <string-name>
            <given-names>G. V.</given-names>
            <surname>Gkoutos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. C.</given-names>
            <surname>Green</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Mallon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Hancock</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Davidson</surname>
          </string-name>
          .
          <article-title>Building mouse phenotype ontologies</article-title>
          .
          <source>Pac Symp Biocomput</source>
          , pages
          <fpage>178</fpage>
          -
          <lpage>89</lpage>
          ,
          <year>2004</year>
          . Journal Article.
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          6.
          <string-name>
            <given-names>G. V.</given-names>
            <surname>Gkoutos</surname>
          </string-name>
          ,
          <string-name>
            <given-names>E. C.</given-names>
            <surname>Green</surname>
          </string-name>
          ,
          <string-name>
            <given-names>A. M.</given-names>
            <surname>Mallon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>J. M.</given-names>
            <surname>Hancock</surname>
          </string-name>
          , and
          <string-name>
            <given-names>D.</given-names>
            <surname>Davidson</surname>
          </string-name>
          .
          <article-title>Using ontologies to describe mouse phenotypes</article-title>
          .
          <source>Genome Biol</source>
          ,
          <volume>6</volume>
          (
          <issue>1</issue>
          ):
          <fpage>R8</fpage>
          ,
          <year>2005</year>
          .
          <fpage>1465</fpage>
          -6914
          <string-name>
            <given-names>Journal</given-names>
            <surname>Article</surname>
          </string-name>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          7.
          <string-name>
            <given-names>Pierre</given-names>
            <surname>Grenon</surname>
          </string-name>
          .
          <article-title>Temporal qualification and change with first-order binary predicates</article-title>
          .
          <source>In International Conference on Formal Ontology in Information Systems (FOIS</source>
          <year>2006</year>
          ), Baltimore, Maryland (USA),
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          8.
          <string-name>
            <given-names>Pierre</given-names>
            <surname>Grenon</surname>
          </string-name>
          ,
          <string-name>
            <given-names>Barry</given-names>
            <surname>Smith</surname>
          </string-name>
          ,
          <string-name>
            <given-names>and Louis</given-names>
            <surname>Goldberg</surname>
          </string-name>
          .
          <article-title>Biodynamic ontology: applying BFO in the biomedical domain</article-title>
          .
          <source>Stud Health Technol Inform</source>
          ,
          <volume>102</volume>
          :
          <fpage>20</fpage>
          -
          <lpage>38</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          9.
          <string-name>
            <given-names>Purvesh</given-names>
            <surname>Khatri</surname>
          </string-name>
          and
          <string-name>
            <given-names>Sorin</given-names>
            <surname>Draghici</surname>
          </string-name>
          .
          <article-title>Ontological analysis of gene expression data: current tools, limitations, and open problems</article-title>
          . Bioinformatics,
          <volume>21</volume>
          (
          <issue>18</issue>
          ):
          <fpage>3587</fpage>
          -
          <lpage>3595</lpage>
          ,
          <year>Sep 2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          10.
          <string-name>
            <surname>Anand</surname>
            <given-names>Kumar</given-names>
          </string-name>
          ,
          <string-name>
            <given-names>Barry</given-names>
            <surname>Smith</surname>
          </string-name>
          , and
          <string-name>
            <given-names>Daniel D.</given-names>
            <surname>Novotny</surname>
          </string-name>
          .
          <article-title>Biomedical informatics and granularity: Conference papers</article-title>
          .
          <source>Comp. Funct. Genomics</source>
          ,
          <volume>5</volume>
          (
          <issue>6</issue>
          -7):
          <fpage>501</fpage>
          -
          <lpage>508</lpage>
          ,
          <year>2004</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          11.
          <string-name>
            <surname>M.Horridge</surname>
            ,
            <given-names>N.</given-names>
          </string-name>
          <string-name>
            <surname>Drummond</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          <string-name>
            <surname>Goodwin</surname>
            ,
            <given-names>A.</given-names>
          </string-name>
          <string-name>
            <surname>Rector</surname>
            ,
            <given-names>R.</given-names>
          </string-name>
          <string-name>
            <surname>Stevens</surname>
            , and
            <given-names>H.</given-names>
          </string-name>
          <string-name>
            <surname>Wan</surname>
          </string-name>
          .
          <article-title>The manchester owl syntax</article-title>
          .
          <source>OWL: Experience and Directions</source>
          <year>2006</year>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref14">
        <mixed-citation>
          12.
          <string-name>
            <given-names>F.</given-names>
            <surname>Neuhaus</surname>
          </string-name>
          ,
          <string-name>
            <given-names>P.</given-names>
            <surname>Grenon</surname>
          </string-name>
          , and
          <string-name>
            <given-names>B.</given-names>
            <surname>Smith.</surname>
          </string-name>
          <article-title>A formal theory of substances, qualities, and universals</article-title>
          . In A. Varzi and L. Vieu, editors,
          <source>Formal Ontology in Information Systems (FOIS?04)</source>
          , page
          <volume>49</volume>
          ?
          <fpage>59</fpage>
          ,
          <string-name>
            <surname>Turin</surname>
          </string-name>
          , Italy,
          <year>2004</year>
          . IOS Press.
        </mixed-citation>
      </ref>
      <ref id="ref15">
        <mixed-citation>
          13.
          <string-name>
            <given-names>Alan</given-names>
            <surname>Rector</surname>
          </string-name>
          .
          <article-title>Representing specified values in OWL: “value partitions” and “value sets”</article-title>
          .
          <source>W3C note</source>
          , W3C, May
          <year>2005</year>
          . http://www.w3.org/TR/2005/NOTE-swbpspecified-values-
          <volume>20050517</volume>
          .
        </mixed-citation>
      </ref>
      <ref id="ref16">
        <mixed-citation>
          14.
          <string-name>
            <given-names>Alan</given-names>
            <surname>Rector</surname>
          </string-name>
          and
          <string-name>
            <given-names>Natasha</given-names>
            <surname>Noy</surname>
          </string-name>
          .
          <article-title>Defining n-ary relations on the semantic web</article-title>
          .
          <source>W3C note</source>
          , W3C,
          <year>April 2006</year>
          . http://www.w3.org/TR/2006/NOTE-swbp-naryRelations-
          <volume>20060412</volume>
          /.
        </mixed-citation>
      </ref>
      <ref id="ref17">
        <mixed-citation>
          15.
          <string-name>
            <surname>Alan</surname>
            <given-names>Rector</given-names>
          </string-name>
          , Jeremy Rogers, and Thomas Bittner.
          <article-title>Granularity, scale and collectivity: when size does and does not matter</article-title>
          .
          <source>J. of Biomedical Informatics</source>
          ,
          <volume>39</volume>
          (
          <issue>3</issue>
          ):
          <fpage>333</fpage>
          -
          <lpage>349</lpage>
          ,
          <year>2006</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref18">
        <mixed-citation>
          16.
          <string-name>
            <given-names>C.</given-names>
            <surname>Rosse</surname>
          </string-name>
          and
          <string-name>
            <given-names>J.L.V.</given-names>
            <surname>Mejino</surname>
          </string-name>
          .
          <article-title>A reference ontology for bioinformatics: The foundational model of anatomy</article-title>
          .
          <source>Journal of Biomedical Informatics</source>
          <volume>36</volume>
          :
          <fpage>478</fpage>
          -
          <lpage>500</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref19">
        <mixed-citation>
          17.
          <string-name>
            <given-names>Barry</given-names>
            <surname>Smith</surname>
          </string-name>
          and
          <string-name>
            <given-names>Achille C.</given-names>
            <surname>Varzi</surname>
          </string-name>
          .
          <article-title>Fiat and bona fide boundaries: Towards on ontology of spatially extended objects</article-title>
          .
          <source>In Spatial Information Theory</source>
          , pages
          <fpage>103</fpage>
          -
          <lpage>119</lpage>
          ,
          <year>1997</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref20">
        <mixed-citation>
          18.
          <string-name>
            <surname>Cynthia L Smith</surname>
          </string-name>
          , Carroll-Ann W Goldsmith, and
          <string-name>
            <surname>Janan T Eppig</surname>
          </string-name>
          .
          <article-title>The Mammalian Phenotype Ontology as a tool for annotating, analyzing and comparing phenotypic information</article-title>
          .
          <source>Genome Biol</source>
          ,
          <volume>6</volume>
          (
          <issue>1</issue>
          ):
          <fpage>R7</fpage>
          ,
          <year>2005</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref21">
        <mixed-citation>
          19.
          <string-name>
            <given-names>Yukiko</given-names>
            <surname>Yamazaki</surname>
          </string-name>
          and
          <string-name>
            <given-names>Pankaj</given-names>
            <surname>Jaiswal</surname>
          </string-name>
          .
          <article-title>Biological ontologies in rice databases. An introduction to the activities in Gramene and Oryzabase</article-title>
          .
          <source>Plant Cell Physiol</source>
          ,
          <volume>46</volume>
          (
          <issue>1</issue>
          ):
          <fpage>63</fpage>
          -
          <lpage>68</lpage>
          ,
          <year>Jan 2005</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>