<?xml version="1.0" encoding="UTF-8"?>
<TEI xml:space="preserve" xmlns="http://www.tei-c.org/ns/1.0" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://www.tei-c.org/ns/1.0 https://raw.githubusercontent.com/kermitt2/grobid/master/grobid-home/schemas/xsd/Grobid.xsd"
 xmlns:xlink="http://www.w3.org/1999/xlink">
	<teiHeader xml:lang="en">
		<fileDesc>
			<titleStmt>
				<title level="a" type="main">Facets, Tiers and Gems: Ontology Patterns for Hypernormalisation</title>
			</titleStmt>
			<publicationStmt>
				<publisher/>
				<availability status="unknown"><licence/></availability>
			</publicationStmt>
			<sourceDesc>
				<biblStruct>
					<analytic>
						<author role="corresp">
							<persName><forename type="first">Phillip</forename><surname>Lord</surname></persName>
							<email>phillip.lord@newcastle.ac.uk</email>
							<affiliation key="aff0">
								<orgName type="department">School of Computing Science</orgName>
								<orgName type="institution">Newcastle University</orgName>
								<address>
									<settlement>Newcastle-upon-Tyne</settlement>
								</address>
							</affiliation>
						</author>
						<author>
							<persName><forename type="first">Robert</forename><surname>Stevens</surname></persName>
							<affiliation key="aff1">
								<orgName type="department">School of Computer Science</orgName>
								<orgName type="institution">University of Manchester</orgName>
								<address>
									<settlement>Manchester</settlement>
								</address>
							</affiliation>
						</author>
						<title level="a" type="main">Facets, Tiers and Gems: Ontology Patterns for Hypernormalisation</title>
					</analytic>
					<monogr>
						<imprint>
							<date/>
						</imprint>
					</monogr>
					<idno type="MD5">831E75A0E0481C02861DBC66DE67035C</idno>
				</biblStruct>
			</sourceDesc>
		</fileDesc>
		<encodingDesc>
			<appInfo>
				<application version="0.7.2" ident="GROBID" when="2023-03-25T02:14+0000">
					<desc>GROBID - A machine learning software for extracting information from scholarly documents</desc>
					<ref target="https://github.com/kermitt2/grobid"/>
				</application>
			</appInfo>
		</encodingDesc>
		<profileDesc>
			<abstract>
<div xmlns="http://www.tei-c.org/ns/1.0"><p>There are many methodologies and techniques for easing the task of ontology building. Here we describe the intersection of two of these: ontology normalisation and fully programmatic ontology development. The first of these describes a standardized organisation for an ontology, with singly inherited self-standing entities, and a number of small taxonomies of refining entities. The former are described and defined in terms of the latter and used to manage the polyhierarchy of the self-standing entities. Fully programmatic development is a technique where an ontology is developed using a domain-specific language within a programming language, meaning that as well defining ontological entities, it is possible to add arbitrary patterns or new syntax within the same environment. We describe how new patterns can be used to enable a new style of ontology development that we call hypernormalisation.</p></div>
			</abstract>
		</profileDesc>
	</teiHeader>
	<text xml:lang="en">
		<body>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="1">INTRODUCTION</head><p>Building ontologies is a difficult and time-consuming business for a number of reasons: from an abstract point-of-view knowledge about the domain can be difficult to gather, to understand and to represent ontologically; more, immediately, ontologies, especially those with a complex representation, can be taxing to describe and define consistently, to update, expand or change when that representation needs to change.</p><p>There have been numerous attempts to simplify and clarify this process including: the development of methodologies such as OntoClean that defines a set of meta-properties that can inform ontological modelling <ref type="bibr" target="#b3">(Guarino and Welty, 2002)</ref>; upper ontologies such as DOLCE or BFO <ref type="bibr" target="#b2">(Grenon et al., 2004</ref>) that provide a pre-made upper classification.</p><p>Another approach that can leverage both of these techniques is ontology normalisation <ref type="bibr" target="#b10">(Rector, 2002)</ref>. Originally intended as a mechanism for "untangling" existing hierarchies or classifications being reused as the basis for an ontology, it also has significant use as a pattern for building ontologies de novo.</p><p>Broadly, a normalised ontology is defined using a skeleton that is a strict tree (i.e. not a acyclic graph) of concepts differentiated using an inheritance (i.e. not a partonomy) relationship. These are further split into: a set of self-standing entities in which children are disjoint from each other, but do not cover the parent, and partitioning or refining concepts that form closed, covering and disjoint hierarchies. Building an ontology in this way, allows the ontology developer to exploit the reasoner to build a polyhierarchy by using classes that define the self-standing entity in terms of the refining partitions. Polyhierarchies are difficult to build manually, as human ontology developers, no matter how good their domain knowledge, find it hard to ensure all possible parents of an entity are taken into account. The normalisation approach uses defined classes and reasoning to remove this chore. Creating the tree of self-standing entities still, however, remains as a task for the developer. The normalisation approach can significantly increase the robustness and reduce the work of manual maintenance <ref type="bibr" target="#b15">(Wroe et al., 2003)</ref>. In this latter form, ontological normalisation has been widely, if implicitly, used.</p><p>While the term "ontology normalisation" has been borrowed, somewhat metaphorically, from database engineering, the process of building ontologies using a set of standard design patterns has a rather more direct relationship to the software engineering equivalent. By reusing a standard set of patterns, it is possible to build an ontology both rapidly, and consistently. This has manifested itself in a number of different ways, with a number of different tools, such as TermGenie <ref type="bibr" target="#b0">(Dietze et al., 2014)</ref>, or Populus <ref type="bibr" target="#b5">(Jupp et al., 2011)</ref> which can generate ontologies according to a pattern.</p><p>We have previously described a fully programmatic methodology for ontology development <ref type="bibr" target="#b6">(Lord, 2013)</ref>, using the Tawny-OWL environment. This is built around the programming language Clojure and enables the ontology to take advantage of all the features of a programming language and its environment, including unit testing <ref type="bibr" target="#b15">(Warrender and Lord, 2015)</ref>, build, evaluation and, of course, pattern-driven development by simple use of functions <ref type="bibr">(Warrender and Lord, 2013)</ref>. With respect to patterns, this environment has several advantages. First, and unlike tools such as Populous and OPPL <ref type="bibr" target="#b1">(Egana Aranguren et al., 2009)</ref>, patterns are developed in the same environment and syntax as simple ontology concepts; it is, therefore, as easy to define a pattern as it is to define a class. Second, being based on Clojure, a language which is homoiconic and has very little syntax of its own, it is possible to build arbitrary syntactic constructions to represent patterns in a way that is both convenient and attractive to the developer.</p><p>In this paper, we describe an extension of the normalisation technique that we call hypernormalisation. This technique is typified by the (near or complete) absence of asserted hierarchy among the self-standing entities. We describe how this allows construction of an exemplar ontology of amino-acids <ref type="bibr" target="#b11">(Stevens and Lord, 2012)</ref>. We then move on to describe recent developments in the Tawny-OWL environment, including the definition of two new design patterns, the tier and the facet, and one syntactic abstraction, the gem, can be used to enable hypernormalised ontology development. Finally, we discuss the application of this approach to other ontologies.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="2">HYPERNORMALISATION AND AMINO ACIDS</head><p>Normalisation is a methodology that aims to disentangle an ontological structure, in the process managing its maintainability, utility and expressivity of the ontology generated. To achieve this, the ontology is split into two main hierarchies: self-standing entities and refining types, see Figure <ref type="figure">2</ref> for an example. The self-standing hierarchy contains entities with a central hierarchy or skeleton. In this part of the ontology, we would expect that hierarchy contains levels that are not-exhaustive -that is the children do not cover the parents, and parents are not closed to new children. This is contrasted by the refining hierarchy that consists of classes that are exhaustive; in many cases, children will be nonoverlapping and, therefore, disjoint. This is not to say that the refining types hierarchy are necessarily complete: in Figure <ref type="figure">2</ref>, for example, the representation of Sex is too simple for many medical uses, but might be sufficient for a customer relations system. In general, the self-standing entities will be defined in terms of the refining types, while polyhierarchical relationships between the self-standing entities will be determined through use of a reasoner. This form of ontology development is quite different from an upper ontology and agnostic to the choice of upper ontology or none. While <ref type="bibr" target="#b10">Rector (2002)</ref> suggests only that self-standing entities and refining types should be "made clear by some mechanism"; in OWL, it could be an upper ontological term, or an annotation.</p><p>We next introduce the amino-acid, used here as an exemplar, which defines the biological amino-acids in terms of the physiochemical properties most relevant to their biological role. It is a structurally interesting ontology because it is normalised, with a clear and clean separation between the self-standing entities and the five refining concepts. It is rather more than this, though; the self-standing entities are split into only three sets: the aminoacids themselves (e.g. Alanine); a (very large) set of defined classes describing the refined types of amino-acid (e.g. Small Neutral Amino Acid); and, finally, the single class Amino Acid. Or, stated alternatively, it contains no skeleton hierarchy at all, and all relationships between the self-standing classes are arrived at through reasoning. This is particularly relevant for the amino acid ontology as it contains over 500 defined classes, with subsumption relationships to the amino acids and between themselves. Maintaining this form of ontology by hand would be impractical.</p><p>We call this style of ontology development hypernormalised. We believe that it is a natural extension of normalisation. Rector notes, for example, that the choice of aspect to form the skeleton is "to some degree arbitrary", but that they should be rigid (after OntoClean <ref type="bibr" target="#b3">(Guarino and Welty, 2002)</ref>) and pragmatically stable (i.e. unlikely to change during the evolution of the ontology). Both of these are, however, true for all the refining concepts in the aminoacids. In short, not only is the choice of skeleton arbitrary it is actually unnecessary and brings no further utility to the ontology than that which can be achieved by use of reasoning.</p><p>We note that the distinction between normalisation and hypernormalisation is not absolute, but one of degree; we are simply describing the tendency toward an ontology with an flat asserted hierarchy.</p><p>Having introduced the notions of a hypernormalised ontology, we next consider a set of new patterns in Tawny-OWL that enable this style of ontology development.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="3">PATTERNISING AND TAWNY-OWL</head><p>The Tawny-OWL environment <ref type="bibr" target="#b6">(Lord, 2013)</ref> and its ability to support patterns <ref type="bibr">(Warrender and Lord, 2013)</ref> has been described elsewhere in detail; here, we provide a quick overview, so that the rest of the paper is clear. Tawny-OWL is implemented as a DSL (domain-specific language) in Clojure, which is a Lisp-like language implemented in Java, and running on the Java virtual machine. Fig. <ref type="figure">2</ref>. A hypernormalised ontology representing the amino-acids using the same terminology as Figure <ref type="figure">2</ref>. Some labels have been abbreviated.</p><p>Tawny-OWL itself wraps the OWL API <ref type="bibr" target="#b4">(Horridge and Bechhofer, 2011)</ref>; this is the same library that underpins Protg, and from it, Tawny-OWL gains much of its functionality. Simple sections of the ontology can be generated using a syntax based on a "lispified" version of Manchester OWL Notation; for example, the following code:</p><formula xml:id="formula_0">(defclass A :super B)</formula><p>This declares a new class A that has the pre-existing class B as a superclass<ref type="foot" target="#foot_0">1</ref> which in Manchester OWL notation would be expressed as:</p><formula xml:id="formula_1">Class: o:A SubClassOf: o:B</formula><p>This code is entirely valid Clojure and can be evaluated in any Clojure environment, such as CIDER/Emacs or Cursive/IntelliJ. It is also possible to define new patterns: for example the following pattern definition:</p><p>(defn some-only <ref type="bibr">[property &amp; clazzes]</ref> (list (some property clazzes) (only property (or clazzes))))</p><p>defines the some-only pattern which generates a set of existential restrictions and one universal with the union of the existential fillers as its filler, which implements the ontological closure pattern. This is a function definition in Clojure terms: defn introduces the function, property &amp; clazzes is the argument list, some, only and or are functions provided by Tawny-OWL and list returns, prosaically, a list<ref type="foot" target="#foot_1">2</ref> . Critically, it is possible to define this pattern in the same environment, or side-by-side in the same file as a simple class definition; with Tawny-OWL it is as easy to define a class, as to define and use a new pattern. Ontologies such as the Karyotype ontology make extensive use of this facility moving freely between ontology and pattern definitions, as well as literal data structures, utility functions and unit tests <ref type="bibr">(Warrender and Lord, 2013)</ref>.</p><p>Tawny-OWL is now a mature and used software product; the first alpha release of Tawny-OWL was in Nov 2012, first full release, Nov 2013, followed by four point releases to 2016. This paper describes mostly the upcoming v2.0 release, although some of the features described were available in earlier versions.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="4">THE VALUE PARTITION</head><p>A common pattern for building a normalised ontology is called the value partition. This pattern <ref type="bibr" target="#b9">(Rector, 2005)</ref> addresses the problem of the ontological modelling of a continuous range. For example, in modelling the amino-acids, we can consider the concept of Size; this could be described directly using the molecular weight of the amino-acid. However, for the purpose of the amino-acids, it is both easy and general practice to split size into three categories: tiny, small and large. In Tawny-OWL, this can be achieved straightforwardly using the defpartition function 3 . The subclasses are disjoint and cover the parent. Following the terminology from <ref type="bibr" target="#b10">Rector (2002)</ref>, the value partition is useful for defining partitioning or refining concepts.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>(defpartition</head></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="5">THE TIER</head><p>The value partition is a pattern aimed at a specific purposesegmenting a continuous range. In practice, though, we have found that the axiomatization of this pattern is more generally useful. For example, considering the amino-acid ontology, it is natural to model the chemistry of the side-chain as such:</p><p>(defpartition SideChainStructure [Aromatic Aliphatic] :domain AminoAcid :super PhysicoChemicalProperty)</p><p>While this is intuitive, ontologically, SideChainStructure is actually of a very different form from Size, as it does not reflect a spectrum. Either the side-chain contains a benzene ring, making it aromatic, or it does not. This form of partition was also noted in <ref type="bibr" target="#b10">Rector (2002)</ref> which includes the classes Male and Female which is not a spectrum, at least in this simplified representation. We introduce here, therefore, the more general notion of the tier: a small set of concepts in a one-deep hierarchy. The tier function supports a range of options: 4 Tawny-OWL also adds annotations which have been elided</p><p>The use of :suffix true causes a simple change to the naming of the entities: Positive will become PositiveCharge which would be expanded as follows:</p><formula xml:id="formula_2">Class: o:PositiveCharge SubClassOf: o:Charge</formula><p>Other names are modified equivalently. By default, this will manifest both when referring to the class in the Tawny-OWL environment, in the IRI of the concept when serialized as OWL, and in the value of an annotation on the concepts<ref type="foot" target="#foot_2">5</ref> . In addition to naming, it is also possible to optionalise: whether or not the subclasses are disjoint, covering, whether the property is functional or whether it is created at all.</p><p>The tier is a more general pattern than the value-partition; in fact, in the current version of Tawny-OWL, the latter is defined in terms of the former.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="6">THE FACET</head><p>Both the value partition and tier introduce a new object property named after the tier, and with a range limited to the classes defined within the tier. The converse is also true; where we use one of the tier classes, such as PositiveCharge it is most likely that we wish to use it with the hasCharge property defined as part. Taken together, we describe the combination of classes and a property as a facet. Facets are a well known technique, first proposed in a library classification (the Colon Classification <ref type="bibr" target="#b8">(Ranganathan, 1933)</ref>, named after the use of ":" as a separator). They are now common-place as seen with facetted browsers used by many websites for navigation of complex product catalogues.</p><p>Tawny-OWL provides explicit support for facets, allowing the association of a property and a set of classes, as demonstrated by the following code:</p><p>(as-facet hasCharge</p><p>Positive Neutral Negative)</p><p>The practical implication of this is that we can now use the facet function to return an existential restriction providing just a class. We can express this programmatically; for example, we might use the assert function provided by Clojure's unit test framework.</p><p>(assert (= (some hasCharge Positive) (facet Positive)))</p><p>By itself, this ability is only slightly more succinct. However, when used with multiple facetted classes, the advantages become considerably clearer, as can be shown by the following assertion.</p><p>(assert (= (list (some hasCharge Neutral) (some hasHydrophobicity Hydrophobic) (some hasPolarity NonPolar) (some hasSideChainStructure Aliphatic) (some hasSize Tiny)) (facet Neutral Hydrophobic NonPolar Aliphatic Tiny)))</p><p>In addition to succinctness, this pattern also reduces the risk of errors; a class such as Tiny will always be used with its correct property. Without the use of facets, the ontology developer must achieve this by hand. It would also be possible to detect the error using reasoning, although this will only succeed if appropriate range and disjoint restrictions are in the ontology. The defpartition and deftier functions, of course, both add these range and disjoint restrictions and declare their classes as facets of their properties.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="7">THE GEM</head><p>Finally, we define the gem that provides a syntactic abstraction for a class composed entirely or mainly from facets. Following the terminology from <ref type="bibr" target="#b10">Rector (2002)</ref>, this abstraction would be useful mostly for self-standing concepts. For example, we could define the amino acid alanine using the following defgem statement.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head>(defgem Alanine</head><p>:comment "An amino acid with a single methyl group as a side-chain."</p><p>:facet Neutral Hydrophobic NonPolar Aliphatic Tiny)</p><p>The other amino-acids can be likewise defined as a series of gems. In fact, the amino acids are so regular, all having the same five facets, that we use a further syntactic abstract specific to the amino-acid ontology -a form of pattern that we describe as localized <ref type="bibr" target="#b12">(Warrender, 2015)</ref>. The gem represents generalised syntax useful for developing any ontology.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="8">ON ANNOTATION</head><p>We have previously discussed the relationship between a design methodology such as normalisation and the use of an upper ontology. The Tawny-OWL patterns described here are all orthogonal and agnostic to the choice of an upper ontology or to none. They do not place their entities in any particular part of the class hierarchy nor define classes outside of those required for the domain ontology, although they could be easily extended to do so should the ontology developer require.</p><p>However, we agree with <ref type="bibr" target="#b10">Rector (2002)</ref> that the use of patterns should "made clear" and be explicit within the ontology. For this reason, all of the patterns described here also make use of annotations, using annotation properties defined using its own internal annotation ontology. For example, all entities generated as a result of a pattern such as deftier are explicitly annotated as such. This means that the use of these patterns is (informally) explicit in the OWL serialization. Tawny-OWL actually uses these annotations internally, for example, to enable the facet functionality by providing a relationship between the classes and the appropriate object property. This is a strictly an implementation detail and could have been achieved without annotations; however, we believe that it shows the value of having this knowledge explicit in OWL.</p></div>
<div xmlns="http://www.tei-c.org/ns/1.0"><head n="9">DISCUSSION</head><p>In this paper, we describe how we have used Tawny-OWL to provide higher-level patterns which can be applied to ontology development. The patterns provide both functionality and syntactic abstraction over the underlying OWL implementation. In the process, they enable the easy and accurate construction of ontologies.</p><p>More specifically, we demonstrate two new patterns: the tier and the facet. The tier is an extension of the existing value partition pattern and can be used for the generation of many small hierarchies that can be used as refining properties. The facet borrows from the library sciences notion of a facetted classification, and is used to associate a set of classes with a specific set of values. This form of classification is very common in the web; the majority of web stores, for example, offer facetted browsing, often with the facets changing for different subsections of the catalogue.</p><p>Taken together, these two patterns enable a new form of ontology development, hypernormalisation, which is an extreme form of normalisation. In this form of normalisation, we do away with the creation of a tree of self-standing entities and instead rely on the reasoner to build all the hierarchy. As well as making the ontologist's task easier, it makes the characteristic that would have been used to create the tree of self-standing entities explicit in the form of a refining characteristic. Here, we have described the application of this methodology to the exemplar amino-acid ontology. Of course, it is dangerous to extrapolate to generality from an exemplar, but we have also started to apply hypernormalisation to ontologies of other, more real, domains including clouds (in the meterological sense), cell lines and a reworking of the Gene Ontology. The tier has been made generic; it does not require, for example, that all refining types are closed (i.e. all possibilities are known in advance) nor disjoint.</p><p>Clearly, not all forms of ontology will naturally be represented in a hypernormalised form. For example, the Karyotype ontology <ref type="bibr">(Warrender and Lord, 2013)</ref> is far from this form; here, we define the self-standing concepts and then use reasoning over a set of defined classes which effectively operate as facets <ref type="bibr" target="#b15">(Warrender and Lord, 2015)</ref>. However, the popularity of the facetted browsers shows that is possible to use this form of classification in many areas. We believe that the introduction of the concept of hypernormalisation and the implementation of it in Tawny-OWL could have significant implications for the future development of ontologies.</p></div><figure xmlns="http://www.tei-c.org/ns/1.0" type="table" xml:id="tab_2"><head></head><label></label><figDesc>Expanded, this would be expressed as follows 4 :</figDesc><table><row><cell>Class: o:Large</cell></row><row><cell>SubClassOf:</cell></row><row><cell>o:Size</cell></row><row><cell>Class: o:Size</cell></row><row><cell>EquivalentTo:</cell></row><row><cell>o:Large or o:Small or o:Tiny</cell></row><row><cell>SubClassOf:</cell></row><row><cell>o:PhysioChemicalProperty</cell></row><row><cell>Class: o:Small</cell></row><row><cell>SubClassOf:</cell></row><row><cell>o:Size</cell></row><row><cell>Class: o:Tiny</cell></row><row><cell>SubClassOf:</cell></row><row><cell>o:Size</cell></row><row><cell>DisjointClasses:</cell></row><row><cell>o:Large,o:Small,o:Tiny</cell></row><row><cell>Size</cell></row><row><cell>[Tiny Small Large]</cell></row><row><cell>:domain AminoAcid</cell></row><row><cell>:super PhysioChemicalProperty)</cell></row><row><cell>Axiomatically, this expands into: a class Size; three subclasses,</cell></row><row><cell>Tiny, Small and Large; and, a property hasSize. The</cell></row></table><note>3 For those with knowledge of Lisp, this is actually a macro; the main implementation is in the value-partition function. Tawny-OWL provides support for implementing syntactic macros whose function is simply to allow the use of bare symbols. For those without knowledge of Lisp, the distinction is not important! property is functional, has range of Size and domain of AminoAcid.</note></figure>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="1" xml:id="foot_0"> See Lord (2014)  an explanation of why :super is used rather than :subclass.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="2" xml:id="foot_1">The function shown here is a slightly simplified version of one provided in Tawny-OWL.</note>
			<note xmlns="http://www.tei-c.org/ns/1.0" place="foot" n="5" xml:id="foot_2">The duplication between the annotation and the IRI fragment is there because IRI schemes such as numeric style OBO IDs; annotations have been elided for brevity</note>
		</body>
		<back>
			<div type="references">

				<listBibl>

<biblStruct xml:id="b0">
	<analytic>
		<title level="a" type="main">Termgenie -a web application for pattern-based ontology class generation</title>
		<author>
			<persName><forename type="first">H</forename><surname>Dietze</surname></persName>
		</author>
		<author>
			<persName><forename type="first">T</forename><forename type="middle">Z</forename><surname>Berardini</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><forename type="middle">E</forename><surname>Foulger</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><forename type="middle">P</forename><surname>Hill</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Lomax</surname></persName>
		</author>
		<author>
			<persName><forename type="first">D</forename><surname>Osumisutherland</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Roncaglia</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><forename type="middle">J</forename><surname>Mungall</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Journal of Biomedical Semantics</title>
		<imprint>
			<biblScope unit="volume">5</biblScope>
			<biblScope unit="issue">1</biblScope>
			<biblScope unit="page">48</biblScope>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b1">
	<analytic>
		<title level="a" type="main">Transforming the axiomisation of ontologies: The ontology pre-processor language</title>
		<author>
			<persName><forename type="first">M</forename><surname>Egana Aranguren</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Stevens</surname></persName>
		</author>
		<author>
			<persName><forename type="first">E</forename><surname>Antezana</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Nature Precedings</title>
		<imprint>
			<date type="published" when="2009">2009</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b2">
	<analytic>
		<title level="a" type="main">Biodynamic ontology: applying BFO in the biomedical domain</title>
		<author>
			<persName><forename type="first">P</forename><surname>Grenon</surname></persName>
		</author>
		<author>
			<persName><forename type="first">B</forename><surname>Smith</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Goldberg</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Stud Health Technol Inform</title>
		<imprint>
			<biblScope unit="volume">102</biblScope>
			<biblScope unit="page" from="20" to="38" />
			<date type="published" when="2004">2004</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b3">
	<analytic>
		<title level="a" type="main">Evaluating ontological decisions with ontoclean</title>
		<author>
			<persName><forename type="first">N</forename><surname>Guarino</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Welty</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Commun. ACM</title>
		<imprint>
			<biblScope unit="volume">45</biblScope>
			<biblScope unit="issue">2</biblScope>
			<biblScope unit="page" from="61" to="65" />
			<date type="published" when="2002">2002</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b4">
	<analytic>
		<title level="a" type="main">The OWL API: A Java API for OWL Ontologies</title>
		<author>
			<persName><forename type="first">M</forename><surname>Horridge</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Bechhofer</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Semantic Web Journal</title>
		<imprint>
			<biblScope unit="volume">2</biblScope>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b5">
	<analytic>
		<title level="a" type="main">Populous: a tool for building owl ontologies from templates</title>
		<author>
			<persName><forename type="first">S</forename><surname>Jupp</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Horridge</surname></persName>
		</author>
		<author>
			<persName><forename type="first">L</forename><surname>Iannone</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Klein</surname></persName>
		</author>
		<author>
			<persName><forename type="first">S</forename><surname>Owen</surname></persName>
		</author>
		<author>
			<persName><forename type="first">J</forename><surname>Schanstra</surname></persName>
		</author>
		<author>
			<persName><forename type="first">K</forename><surname>Wolstencroft</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Stevens</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">BMC Bioinformatics</title>
		<imprint>
			<biblScope unit="volume">13</biblScope>
			<biblScope unit="page">S5</biblScope>
			<date type="published" when="2011">2011</date>
		</imprint>
	</monogr>
	<note>Suppl 1</note>
</biblStruct>

<biblStruct xml:id="b6">
	<analytic>
		<title level="a" type="main">The Semantic Web takes Wing: Programming Ontologies with Tawny-OWL</title>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">OWLED</title>
				<imprint>
			<date type="published" when="2013">2013. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b7">
	<monogr>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
		<ptr target="http://www.russet.org.uk/blog/2985" />
		<title level="m">Manchester syntax is a bit backward</title>
				<imprint>
			<date type="published" when="2014">2014</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b8">
	<monogr>
		<title level="m" type="main">Colon Classification</title>
		<author>
			<persName><forename type="first">S</forename><surname>Ranganathan</surname></persName>
		</author>
		<imprint>
			<date type="published" when="1933">1933</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b9">
	<monogr>
		<title level="m" type="main">Representing specified values in owl: &quot;value partitions&quot; and &quot;value sets</title>
		<author>
			<persName><forename type="first">A</forename><surname>Rector</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2005">2005</date>
		</imprint>
	</monogr>
	<note type="report_type">W3C Working Group Note</note>
</biblStruct>

<biblStruct xml:id="b10">
	<analytic>
		<title level="a" type="main">Normalisation of ontology implementations: Towards modularity, re-use, and maintainability</title>
		<author>
			<persName><forename type="first">A</forename><forename type="middle">L</forename><surname>Rector</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Proceedings Workshop on Ontologies for Multiagent Systems (OMAS) in conjunction with European Knowledge Acquisition Workshops</title>
				<meeting>Workshop on Ontologies for Multiagent Systems (OMAS) in conjunction with European Knowledge Acquisition Workshops<address><addrLine>Siguenza, Spain</addrLine></address></meeting>
		<imprint>
			<date type="published" when="2002">2002</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b11">
	<monogr>
		<title level="m" type="main">Semantic publishing of knowledge about amino acids</title>
		<author>
			<persName><forename type="first">R</forename><surname>Stevens</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
		<ptr target="http://ceur-ws.org/Vol-903/paper-06.pdf" />
		<imprint>
			<date type="published" when="2012">2012</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b12">
	<monogr>
		<title level="m" type="main">The Consistent Representation of Scientific Knowledge: Investigations into the Ontology of Karyotypes and Mitochondria</title>
		<author>
			<persName><forename type="first">J</forename><surname>Warrender</surname></persName>
		</author>
		<imprint>
			<date type="published" when="2015">2015</date>
		</imprint>
		<respStmt>
			<orgName>School of Computing Science, Newcastle University</orgName>
		</respStmt>
	</monogr>
	<note type="report_type">Ph.D. thesis</note>
</biblStruct>

<biblStruct xml:id="b13">
	<analytic>
		<title level="a" type="main">A pattern-driven approach to biomedical ontology engineering</title>
		<author>
			<persName><forename type="first">J</forename><surname>Warrender</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">SWAT4LS</title>
		<imprint>
			<date type="published" when="2013">2013. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b14">
	<analytic>
		<title level="a" type="main">The Karyotype Ontology: a computational representation for human cytogenetic patterns</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">D</forename><surname>Warrender</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="j">Bio-Ontologies</title>
		<imprint>
			<date type="published" when="2013">2013. 2013</date>
		</imprint>
	</monogr>
</biblStruct>

<biblStruct xml:id="b15">
	<analytic>
		<title level="a" type="main">A methodology to migrate the gene ontology to a description logic environment using daml+oil</title>
		<author>
			<persName><forename type="first">J</forename><forename type="middle">D</forename><surname>Warrender</surname></persName>
		</author>
		<author>
			<persName><forename type="first">P</forename><surname>Lord</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Wroe</surname></persName>
		</author>
		<author>
			<persName><forename type="first">R</forename><surname>Stevens</surname></persName>
		</author>
		<author>
			<persName><forename type="first">C</forename><surname>Goble</surname></persName>
		</author>
		<author>
			<persName><forename type="first">M</forename><surname>Ashburner</surname></persName>
		</author>
	</analytic>
	<monogr>
		<title level="m">Pacific Symposium on Biocomputing</title>
				<imprint>
			<date type="published" when="2003">2015. 2003</date>
		</imprint>
	</monogr>
	<note>How, What and Why to test an ontology</note>
</biblStruct>

				</listBibl>
			</div>
		</back>
	</text>
</TEI>
