@prefix : <biology.n3#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
#@prefix f: <ferrell.rdf#> .
@prefix f: <ferrell.rdf#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

<>  dc:title "Biology Ontology (demo)";
    dc:creator "Sandro Hawke, sandro@w3.org";
    dc:description """An Ontology of Biology, based on the standard 
                      binomial nomenclature of Carolus Linnaeus.

                      Far from being complete, this is just a small
                      demonstration of what one could do.

		      THIS PARTICULAR VERSION has been modified from 
		      using OWL and RDFS to using ''ferrell'', an
		      axiomatized ontology language.""";
    dc:date "2003-03-28";
    dc:language "en";
    dc:subject "Biology";

    a f:Ontology;
    f:imports rdfs:, f:;
    f:versionInfo "$Id: biology.n3,v 1.5 2003/07/29 02:57:00 timbl Exp $";

    rdfs:seeAlso <http://www.wikipedia.org/wiki/Binomial_nomenclature>
.


# Some familiar names

:Dog f:equivalentClass :CanisFamiliaris.
:Human f:equivalentClass :HomoSapiens.
:RedWolf f:equivalentClass :CanisRufus.
:Dingo f:equivalentClass :CanisFamiliarisDingo.

# Some binomial names

:Canis a f:Class.

:CanisFamiliaris 
  rdfs:comment """The class of animals designated 
               Canis familiaris (domestic dog).  This
	       includes all the dog breeds, but
	       not wolves.""";
  rdfs:label "Canis familiaris";
  rdfs:seeAlso <http://www.agrobiologicals.com/glossary/G3089.htm>;
  a f:Class;
  f:subClassOf :Canis.

:CanisFamiliarisDingo 
  f:subClassOf :CanisFamiliaris;
  rdfs:seeAlso <http://www.naturalworlds.org/wolf/canis/Canis_familiaris_dingo.htm>.

:CanisRufus a f:Class;
  f:subClassOf :Canis;
  rdfs:label "Red Wolf";
  rdfs:comment """As of 1999 there were about 300 individuals of this 
	       endangered species""";
  rdfs:seeAlso <http://druidry.org/obod/endangered/redwolf.html>.

:HomoSapiens a f:Class.

# Some class relationships

:CanisFamiliaris f:disjointWith :HomoSapiens.
:CanisFamiliaris f:disjointWith :CanisRufus.

