Class TabDelimParser
- java.lang.Object
-
- org.biojava.nbio.ontology.io.TabDelimParser
-
public class TabDelimParser extends Object
Parse tab-delimited ontology files into Ontology objects.The tab-delimited ontology files have three types of lines. Lines that are pure white space can be discarded. Comment lines begin with a hash (#) and can be discarded. The payload lines contain three fields seperated by tabs. These are
subject
,predicate
andobject
. By convention, the content of each field contains no spaces.By convention, if there are comment lines beginning with
name:
ordescription:
and these appear before any predicate declarations then they become the name and description of the ontology. Otherwise, the name and description will be the empty string.Term names normally will be just a term name like
predicate
orperson
. There are also terms that represent collections of triples. For example, here is the declaration for the 'triple' type in the core ontology.... triple is-a any triple has-a source triple has-a target triple has-a predicate (triple,has-a,any) size 3 ...
The first four lines just associate triple with some type with a predicate (e.g. is-a or has-a). The fifth line says that something must have a size of three. The 'something' is
(triple,has-a,any) size 3
and is short-hand for a collection of triples that state that the source must betriple
, the target must beany
and the predicate must behas-a
. This whole expression states that a triple has exactly three has-a relationships; that is, exactly three properties.- Author:
- Matthew Pocock
-
-
Constructor Summary
Constructors Constructor Description TabDelimParser()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Ontology
parse(BufferedReader in, OntologyFactory of)
Parse an ontology from a reader.
-
-
-
Constructor Detail
-
TabDelimParser
public TabDelimParser()
-
-
Method Detail
-
parse
public Ontology parse(BufferedReader in, OntologyFactory of) throws IOException, OntologyException
Parse an ontology from a reader. The reader will be emptied of text. It is the caller's responsibility to close the reader.- Parameters:
in
- the BufferedReader to read fromof
- an OntologyFactory used to create the Ontology instance- Returns:
- a new Ontology
- Throws:
IOException
- if there is some problem with the buffered readerOntologyException
- if it was not possible to instantiate a new ontology
-
-