<!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>Checking and Repairing Ontological Naming Patterns using ORE and PatOMat</article-title>
      </title-group>
      <contrib-group>
        <contrib contrib-type="author">
          <string-name>Ondrej Zamazal</string-name>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Lorenz Buhmann</string-name>
          <xref ref-type="aff" rid="aff0">0</xref>
        </contrib>
        <contrib contrib-type="author">
          <string-name>Vojtech Svatek</string-name>
          <email>svatek@vse.cz</email>
          <xref ref-type="aff" rid="aff1">1</xref>
        </contrib>
        <aff id="aff0">
          <label>0</label>
          <institution>AKSW research group, University of Leipzig</institution>
          ,
          <country country="DE">Germany</country>
        </aff>
        <aff id="aff1">
          <label>1</label>
          <institution>Knowledge Engineering Group, University of Economics Prague</institution>
          ,
          <country country="CZ">Czech Republic</country>
        </aff>
      </contrib-group>
      <fpage>69</fpage>
      <lpage>76</lpage>
      <abstract>
        <p>Analysis of the naming of entities across ontological structures can help reveal both naming issues and underlying conceptualization issues. Cross-entity naming analysis thus extends the standard logical satis ability checking by an extra, less rigorous and reliable but often farther reaching layer. We show how such naming patterns can be applied within the transformation pattern paradigm used by the PatOMat transformation framework. We describe how the PatOMat tool has been integrated into the (logic-oriented) Ontology Repair and Enrichment tool (ORE), and present the results of application of a prominent naming pattern, `non-matching child', on a collection of linked data vocabularies.</p>
      </abstract>
      <kwd-group>
        <kwd>Naming pattern</kwd>
        <kwd>Ontology Repair</kwd>
        <kwd>PatOMat</kwd>
        <kwd>ORE</kwd>
      </kwd-group>
    </article-meta>
  </front>
  <body>
    <sec id="sec-1">
      <title>Introduction</title>
      <p>
        During the decades of knowledge engineering research, there has been recurrent
dispute on how the natural language structure in uences the structure of formal
knowledge bases and vice versa. A large part of the community seems to
recognise that the content expressed in formal representation languages, such as the
semantic web ones, should be accessible not only to logical reasoning machines
but also to humans and NLP procedures, and thus resemble the natural language
as much as possible.3 We build upon the assumption that naming in ontologies
matters, can be sensibly designed, and to some degree even automatically
identi ed in existing ontologies, with the help of naming patterns. Current ontology
debugging methods, mostly dealing with the logical structure of the ontology
only, can thus be extended by debugging of naming issues. Detecting improper
or awkward naming should be ideally followed by repairing suggestions. While
in the biomedical eld there have already been e orts in naming analysis, e.g.,
in [
        <xref ref-type="bibr" rid="ref2 ref9">2, 9</xref>
        ], naming in the broad eld of linked data vocabularies (where
domainspeci c heuristics cannot be applied) has rarely been addressed. Generic tools
such as OntoCheck [
        <xref ref-type="bibr" rid="ref8">8</xref>
        ] have so far been only equipped with very simple tests such
as that of name length or presence of a concrete sub-token (such as `and'). The
      </p>
      <sec id="sec-1-1">
        <title>3 See for example the arguments by Y. Wilks in [7]</title>
        <p>presented approach thus contributes to lling in a missing piece: domain-neutral
cross-entity analysis.</p>
        <p>
          The paper follows up on earlier research described in [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ]. In contrast to [
          <xref ref-type="bibr" rid="ref11">11</xref>
          ],
where the analysis of presence of the `non-matching child' pattern was carried
out manually and only qualitative results (for three ontologies) were presented,
we now
{ carry out the pattern detection fully automatically, by means of a
versatile ontology transformation framework, PatOMat [
          <xref ref-type="bibr" rid="ref12">12</xref>
          ], with declaratively
represented patterns
{ in this context, also consider a simple form of pattern-based repair of the
discovered issue
{ provide a lightweight integration of naming analysis and logical satis ability
analysis within the Ontology Repair and Enrichment tool (ORE) [
          <xref ref-type="bibr" rid="ref5">5</xref>
          ]
{ present the empirical results of analysis on a larger number of linked data
vocabularies included in the respected Linked Open Vocabularies collection.
        </p>
        <p>The paper is structured as follows. Section 2 brie y surveys the PatOMat
transformation framework. Section 3 explains the NMC (non-matching child)
pattern and describes its implementation via PatOMat transformation patterns.
Section 4 describes the integration of the whole functionality into ORE. Section 5
reports on an experiment in NMC pattern detection over 16 ontologies (namely,
popular linked data vocabularies). Section 6 then wraps up the paper.
2</p>
      </sec>
    </sec>
    <sec id="sec-2">
      <title>PatOMat Framework and Naming Patterns</title>
      <p>PatOMat framework principles The PatOMat Framework4 has been originally
designed with the goal of transforming ontologies between `structural' modelling
styles, e.g., via de/reifying properties, metamodelling classes by individuals,
switching between object and data properties, and the like. However, the
entity naming aspect has been considered from the beginning.</p>
      <p>
        The central notion in PatOMat is that of transformation pattern (TP). A TP
contains two ontology patterns (source OP and target OP) and the description
of the transformation betweem them, called pattern transformation (PT). For
instance, we can specify a very simple TP such that a subsumption relation
between two classes (as source, OP1) should be transformed to a SKOS5 taxonomic
relationship between two individuals (as target, OP2). A schematic description
follows.6
OP1: Class: ?OP1_A subClassOf ?OP1_B
OP2: Class: ?OP2_A skos:broader ?OP2_B
PT: ?OP1_A = ?OP2_A ?OP1_B = ?OP2_B.
4 [
        <xref ref-type="bibr" rid="ref12">12</xref>
        ] provides more details about the framework, and at http://owl.vse.cz:8080/
tutorial/ there is a fully- edged tutorial for the current version.
5 http://www.w3.org/TR/skos-primer/
6 OP1 and OP2 contain axioms in frame-based variant of Manchester syntax, http:
//www.w3.org/TR/owl2-manchester-syntax/
      </p>
      <p>The representation of OPs is based on the OWL 2 DL pro le. However,
while an OWL ontology refers to particular entities, e.g. to class Person, in
the patterns we generally use placeholders, e.g. ?OP 1 A. Entities are speci ed
(i.e. placeholders are instantiated) at the time of instantiation of a pattern. An
OP consists of entity declarations (referring to placeholders or concrete entities),
axioms and naming detection patterns (NDPs); the last capture the naming
aspect of the OP important for its detection, see below. A PT consists of a set
of transformation links and a set of naming transformation patterns (NTPs).
Transformation links are either logical equivalence relationships or extralogical
relationships holding between pairs of entities of di erent type (such as class
vs. individual, as in our example above). NTPs serve for generating new names
for original or newly created entities.</p>
      <p>PatOMat currently supports naming operations at the level of short URIs; its
extension to rdfs:label values would however be straightforward. Various token
separators, such as underscore, hyphen or camel-case, are supported.
PatOMat implementation The framework prototype implementation is available
either as a Java library or as three core services.7 The whole transformation is
divided into three steps, which correspond to the three services:
{ The OntologyPatternDetection service takes the transformation pattern and
a particular original ontology on input, and returns the binding of entity
placeholders on output, in XML. The structural/logical aspect is captured
in the structure of an automatically generated SPARQL query;8 the naming
aspect is dealt with based on its description within the source pattern.
{ The InstructionGenerator service takes the particular binding of
placeholders and the transformation pattern on input, and returns particular
transformation instructions on output, also in XML. Transformation instructions are
generated according to the transformation pattern and the pattern instance.
{ The OntologyTransformation service takes the particular transformation
instructions and the particular original ontology on input, and returns the
transformed ontology on output. The service is based on our speci c
implementation over OWL-API,9 and enables operations on axioms, entities and
adding OWL annotations.</p>
      <p>
        The process of transformation is decomposed into parts in order to enable
an user intervention within the whole work ow. User intervention can be carried
out using a generic graphical tool, GUIPOT [
        <xref ref-type="bibr" rid="ref13">13</xref>
        ].
      </p>
      <sec id="sec-2-1">
        <title>7 All accessible via the web interface at http://owl.vse.cz:8080/.</title>
        <p>8 http://www.w3.org/TR/rdf-sparql-query/
9 http://owlapi.sourceforge.net/</p>
      </sec>
    </sec>
    <sec id="sec-3">
      <title>Non-Matching Child (NMC) Pattern</title>
      <p>
        It is quite common in ontologies that a subclass has the same head noun as
its parent class.10 By an earlier study [
        <xref ref-type="bibr" rid="ref11">11</xref>
        ] we estimate that in ontologies for
technical domains this simple pattern is veri ed in 50{80% of class-subclass
pairs such that the subclass name is a multi-token one. This number further
increases if we consider thesaurus correspondence (synonymy and hypernymy)
rather than literal string equality. In fact, the set-theoretic nature of taxonomic
path entails that the correspondence of head nouns along this path should be
close to 100% in principle; the only completely innocent deviations from it should
be those caused by incomplete thesauri. In other words, any violation of head
noun correspondence may potentially indicate a (smaller or greater) problem in
the ontology. Prototypical situations are:
{ Inadequate use of class-subclass relationship, typically in the place of
wholepart or class-instance relationship, i.e., a conceptualisation error frequently
occurring in novice ontologies.
{ Name shorthanding, typically manifested by use of adjective, such as
`State
      </p>
      <p>Owned' (subclass of `Company').</p>
      <p>While the former requires complex refactoring of the ontology fragment, the
latter can be healed by propagation of the parent name down to the child name.
NMC pattern in PatOMat Let us now show how to capture the NMC pattern
within a PatOMat TP. The source OP is here just a subClassOf relationship
between two classes. There are however two variants of this source OP: one
using subClassOf and one using directSubClassOf, the latter operating on class
pairs identi ed by a reasoner.11</p>
      <p>An NDP within the source OP can consist of several naming operations such
as detection of a head noun; their results can then be compared using di erent
methods. We designed two variants of such an NDP:
1. comparing whether ?OP 1 A has the same head noun as ?OP 1 P (e-variant,
for `equality') or
2. comparing whether head noun of ?OP 1 P is a hypernym of head noun of
?OP 1 A (t-variant, for `thesaurus').</p>
      <p>The target OP has only one variant, which is structurewise identical to the
source OP, i.e., Class: ?OP2 A SubClassOf: ?OP2 P (and there is no NDP
part). Finally, the PT contains transformation links specifying equality of ?OP 1 A
and ?OP 2 A and analogously for ?OP 1 P and ?OP 2 P . More interestingly, it
also includes an NTP, which represents the naming repair step. It speci es that
?OP A should be extended by the head noun of ?OP 1 P .</p>
      <p>
        In combination, we can have four variants of the NMC pattern, of which we
consider three: (1) Se, St and Dt.12 The Se variant simply matches the head
10 The head noun is typically the last token, but not always, in particular due to
possible prepositional constructions, as, e.g., in `HeadOfDepartment'.
11 We used Pellet, http://pellet.owldl.com/.
12 All variants available at http://nb.vse.cz/~svabo/patomat/tp/np/
nouns, the Dt variant needs to employ a reasoner, and both t variants employ
a thesaurus in order to verify the hypernym relationships. In our case we use
WordNet [
        <xref ref-type="bibr" rid="ref6">6</xref>
        ]. In order to traverse hypernym relations we rst get all senses of
a given word and retrieve hypernyms of all senses. Then we check whether the
lemma of a given word is the same as the lemma of one of hypernyms. If it is
not the case, it continues to the next level of hypernyms. By experience, we set
up the number of levels to ve.
      </p>
      <p>In the experiment described in Section 5, we used the St variant of the
pattern, but, referring to the conjecture formulated at the beginning of this
section, distinguished between single- and multi-token child.
4</p>
    </sec>
    <sec id="sec-4">
      <title>Integration into ORE</title>
      <p>
        The ORE13 (Ontology Repair and Enrichment) tool was designed so as to allow
knowledge engineers to improve knowledge bases in the form of SPARQL
endpoints and OWL ontologies. ORE helps xing several kinds of problems such as
logical errors, i.e., unsatis able classes and inconsistencies, by applying
state-ofthe-art methods [
        <xref ref-type="bibr" rid="ref3 ref4">3, 4</xref>
        ], and, newly, the naming problems described in this paper.
Additionally, ORE allows for the semi-automatic enrichment of knowledge base
schemas by suggesting OWL axioms generated by the application of machine
learning algorithms [
        <xref ref-type="bibr" rid="ref1">1</xref>
        ] on the underlying instance data. These data adhering
axioms, if accepted by the user, can result in a more expressive ontology, which
can for example enable more powerful querying.
      </p>
      <p>The PatOMat framework is integrated into ORE by means of a separate task
and visualized in a single view as shown in Figure 1. Here the user can select a
naming pattern, as for example non-matching child1 (corresponding to the St
variant of the non-matching child pattern), in the leftmost list ( 1 ). PatOMat
then detects instances of the selected pattern in the currently loaded ontology,
e.g., [?OP1 P=Contribution;?OP1 A=Poster](see 2 ). For the selected pattern
instances the user will be provided a list of renaming instructions (see 3 ), for
example to rename the class Poster to PosterContribution, which can then
be used to transform the ontology and solve the detected naming issues.
5</p>
    </sec>
    <sec id="sec-5">
      <title>NMC Pattern Detection Experiment</title>
      <p>We carried out a small experiment on 16 randomly selected vocabularies from
the Linked Open Vocabularies (LOV) catalog.14 They belong to four of the eight
major clusters suggested by the LOV curators: City (related to personal, social
and governmental data), Library, Media and Market. Four of the vocabularies,
ontopic, swc, wi and gc, imported other vocabularies; we considered them
together with these imports. For completeness we also include two vocabularies
that did not contain any subclass axioms.
13 http://aksw.org/Projects/ORE.html
14 http://lov.okfn.org</p>
      <p>The summary of the results is in Table 1. The rst two columns display
the nickname of the vocabulary within LOV,15 its catalogued name and cluster.
The next three columns show the total number of asserted subclass axioms, the
number of axioms matching the NMC pattern (the ordering in the table is in
the descending order of this eld), and the respective ratio. The following three
columns are analogous, but only refer to subclass axioms where the subclass has
a multi-token name. The last two columns show the time spent (in seconds) and
the average time corresponding to one subclass axiom.</p>
      <p>The proportion of axioms satisfying the NMC pattern (`Ratio all' column)
ranges from 0% to 87%. The results however seem to con rm our conjecture
that subclasses with multi-token names are more likely to follow (at least via
thesaurus correspondence) the head noun of their parent class name. For 11 of
the 16 vocabularies, the frequency of occurrence of the NMC pattern was reduced
by focusing on multi-token subclasses, and only for 2 (swc and gr ) it increased.</p>
      <p>Manual analysis of the `alerts' revealed several interesting cases:
{ Although possibly with some `philosophical' excuse, the class-subclass pair
`Topic'{`TopicSignature' in ontopic is suspect for tacit partonomy, as the
latter is commented as `the subcollection of terms populating a Topic' (a set
of terms is likely not same as the topic it populates).
{ Head noun of the superclass is sometimes a meta-level term. For example,
in swc the class `ProgrammeCommitteeMember' is a subclass of `Role';
obviously, if this subclass is populated by `Person' entities, they would become
instances of `Role', which would be undesirable. In gnd, which is a
taxonomy of keyword types rather than a true data vocabulary, class
`PlaceOrGeographicName' has subclasses such as `MemberState'; however, the latter
could be, in the linked data setting, populated by true `state' entities (rather
than just by their names viewed as keywords).
15 The URI of the catalog item page is http://lov.okfn.org/dataset/lov/details/
vocabulary_&lt;nickname&gt;.html.
Nick Name/topic
name
ontopic Ontopic Library
swc SemWeb Conference City
gnd GND Library
mvco Media Value Chain Media
pattern Pattern Library
gr GR - GoodRelations Market
wi Weighted Interests City
bibo Bibliographic Library
frbr Core FRBR Concepts Library
gc oeGOV Governm.Core City
foaf FOAF City
sioc SIOC City
pna Press.net Asset Media
chord OMRAS2 Chord Media
comm Incident communication City
part Participation Schema City
Total
{ The previous is a special case of name shorthanding. A more typical case
is such that no head noun can be detected at all, e.g., with pair such as
`PoliticalSystem'{`Tribal' (in gc) or `Publication'{`Unpublished' (in swc).
{ Some vocabularies rede ne common terms in their speci c manner, which
generates false alerts. For example, in bibo, `CourtReporter' is subclass of
`Periodical' (while a `reporter' would not primarily be viewed as
periodical) and `LegalCaseDecision' is a subclass of `LegalCaseDocument' (while a
`decision', in the general sense, is not a document). Similarly, ontopic has
`TimeInterval' as subclass of `Region' (here the unusual choice of term
`region' follows from the upper-level nature of the ontology).
{ Sometimes the head noun detection fails due to non-intuitive agglutination
of tokens. A grammatically sound one is `SubjectHeadingSensoStricto' (in
gnd ), unmatched to its parent `SubjectHeading'. Less sound seem to be,
e.g., `PaymentMethodCreditCard or `QuantitativeValueFloat' (in gr ).
{ An unusual case setting may make the tokenizer fail and thus lead to a false
alert, e.g., for a class named `Vevent' (a kind of `event' in swc).</p>
      <p>The relatively high computation times are partly owing to SPARQL query
evaluation and partly to WordNet traversal. However, given the o ine nature of
the task, they are not prohibitive.
Many ontologies, including linked data vocabularies, have recently been created,
often with little concern for naming coherence, and sometimes even with
conceptualization aws (also re ected by naming incoherence). Visual analysis of
the naming aspect of their taxonomic structures is typically feasible, as most
ontologies/vocabularies are not extremely large. However, allowing the user to
focus on `suspicious' cases (and ignoring those apparently sound) can be helpful.</p>
      <p>We present a solution for such machine-supported analysis, which combines
the functionality of an ontology debugging (and enrichment) tool, ORE, with
that of a pattern-based ontology transformation framework, PatOMat, and with
online access to WordNet. Empirical results of naming analysis (regarding the
NMR pattern) on 16 linked data vocabularies have been presented.</p>
      <p>In future we plan to come up with more sophisticated naming/transformation
patterns (e.g., indicating a taxonomy/partonomy mismatchh), and involve a
larger number of vocabularies in the experiment.</p>
      <p>The research is supported by the EU ICT FP7 under No.257943, LOD2 project.</p>
    </sec>
  </body>
  <back>
    <ref-list>
      <ref id="ref1">
        <mixed-citation>
          1. Buhmann L.,
          <string-name>
            <surname>Lehmann</surname>
            <given-names>J</given-names>
          </string-name>
          .:
          <article-title>Universal OWL Axiom Enrichment for Large Knowledge Bases</article-title>
          .
          <source>In: EKAW</source>
          <year>2012</year>
          , Galway, Ireland,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref2">
        <mixed-citation>
          2.
          <string-name>
            <surname>Fernandez-Breis</surname>
            ,
            <given-names>J. T.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iannone</surname>
            ,
            <given-names>L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Palmisano</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Rector</surname>
            ,
            <given-names>A. L.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Stevens</surname>
          </string-name>
          , R.:
          <article-title>Enriching the Gene Ontology via the Dissection of Labels Using the Ontology Pre-processor Language</article-title>
          .
          <source>EKAW</source>
          <year>2010</year>
          :
          <fpage>59</fpage>
          -
          <lpage>73</lpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref3">
        <mixed-citation>
          3.
          <string-name>
            <surname>Horridge</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Parsia</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sattler</surname>
            <given-names>U.</given-names>
          </string-name>
          :
          <article-title>Laconic and Precise Justi cations in OWL</article-title>
          .
          <source>In: ISWC</source>
          <year>2008</year>
          , Karlsruhe, Germany,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref4">
        <mixed-citation>
          4.
          <string-name>
            <surname>Kalyanpur</surname>
            <given-names>A.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Parsia</surname>
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Horridge</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sirin</surname>
            <given-names>E.</given-names>
          </string-name>
          :
          <article-title>Finding all justi cations of OWL DL entailments</article-title>
          .
          <source>In: ISWC</source>
          <year>2007</year>
          ,
          <year>2007</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref5">
        <mixed-citation>
          5.
          <string-name>
            <surname>Lehmann</surname>
            <given-names>J.</given-names>
          </string-name>
          , Buhmann L.:
          <article-title>ORE - a tool for repairing and enriching knowledge bases</article-title>
          .
          <source>In: ISWC'10</source>
          , Shanghai, China,
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref6">
        <mixed-citation>
          6.
          <string-name>
            <surname>Miller</surname>
            <given-names>G. A.</given-names>
          </string-name>
          <article-title>WordNet: A Lexical Database for English</article-title>
          .
          <source>CACM</source>
          ,
          <year>1995</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref7">
        <mixed-citation>
          7.
          <string-name>
            <surname>Nirenburg</surname>
            <given-names>S.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Wilks</surname>
            <given-names>Y.</given-names>
          </string-name>
          :
          <article-title>Whats in a symbol: Ontology and the surface of language</article-title>
          .
          <source>Journal of Experimental and Theoretical AI</source>
          ,
          <year>2001</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref8">
        <mixed-citation>
          8.
          <string-name>
            <surname>Schober</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Tudose</surname>
            ,
            <given-names>I.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Svatek</surname>
            ,
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Boeker</surname>
            ,
            <given-names>M.:</given-names>
          </string-name>
          <article-title>OntoCheck: verifying ontology naming conventions and metadata completeness in Protege 4</article-title>
          .
          <string-name>
            <given-names>J.</given-names>
            <surname>Biomed</surname>
          </string-name>
          . Semantics,
          <year>2012</year>
          ,
          <volume>3</volume>
          (
          <issue>Suppl 2</issue>
          ):
          <fpage>S4</fpage>
          .
        </mixed-citation>
      </ref>
      <ref id="ref9">
        <mixed-citation>
          9.
          <string-name>
            <surname>Schober</surname>
            ,
            <given-names>D.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Smith</surname>
            ,
            <given-names>B.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lewis</surname>
            ,
            <given-names>S. E.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Kusnierczyk</surname>
            ,
            <given-names>W.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Lomax</surname>
            ,
            <given-names>J.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Mungall</surname>
            ,
            <given-names>C.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Taylor</surname>
          </string-name>
          , C. F.,
          <string-name>
            <surname>Rocca-Serra</surname>
            ,
            <given-names>P.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Sansone</surname>
          </string-name>
          , S.-A.:
          <article-title>Survey-based naming conventions for use in OBO Foundry ontology development</article-title>
          .
          <source>BMC Bioinformatics</source>
          <volume>10</volume>
          (
          <year>2009</year>
          ).
        </mixed-citation>
      </ref>
      <ref id="ref10">
        <mixed-citation>
          10.
          <string-name>
            <surname>Svatek</surname>
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Svab-Zamazal</surname>
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Presutti</surname>
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Ontology Naming Pattern Sauce for (Human and Computer) Gourmets</article-title>
          . In: Workshop on Ontology Patterns at ISWC09.
        </mixed-citation>
      </ref>
      <ref id="ref11">
        <mixed-citation>
          11.
          <string-name>
            <surname>Svab-Zamazal</surname>
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Svatek</surname>
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>Analysing Ontological Structures through Name Pattern Tracking</article-title>
          . In: EKAW-2008, Acitrezza, Italy,
          <year>2008</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref12">
        <mixed-citation>
          12.
          <string-name>
            <surname>Svab-Zamazal</surname>
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Svatek</surname>
            <given-names>V.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Iannone</surname>
            <given-names>L.</given-names>
          </string-name>
          :
          <article-title>Pattern-Based Ontology Transformation Service Exploiting OPPL and OWL-API</article-title>
          .
          <source>In: EKAW</source>
          <year>2010</year>
          .
        </mixed-citation>
      </ref>
      <ref id="ref13">
        <mixed-citation>
          13.
          <string-name>
            <surname>Zamazal</surname>
            <given-names>O.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Dudas</surname>
            <given-names>M.</given-names>
          </string-name>
          ,
          <string-name>
            <surname>Svatek</surname>
            <given-names>V.</given-names>
          </string-name>
          :
          <article-title>User-Friedly Pattern-Based Transformation of OWL Ontologies</article-title>
          .
          <source>In: EKAW</source>
          <year>2012</year>
          , Galway, Ireland,
          <year>2012</year>
          .
        </mixed-citation>
      </ref>
    </ref-list>
  </back>
</article>