Package org.biojava.nbio.ontology.io
Class OboParser
java.lang.Object
org.biojava.nbio.ontology.io.OboParser
Parses an OBO file.
- Since:
- 1.7
Example
OboParser parser = new OboParser(); InputStream inStream = this.getClass().getResourceAsStream("/files/ontology/biosapiens.obo"); BufferedReader oboFile = new BufferedReader ( new InputStreamReader ( inStream ) ); try { Ontology ontology = parser.parseOBO(oboFile, "BioSapiens", "the BioSapiens ontology"); Set keys = ontology.getTerms(); Iterator iter = keys.iterator(); while (iter.hasNext()){ System.out.println(iter.next()); } } catch (Exception e){ e.printStackTrace(); }
- Author:
- Andreas Prlic
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionparseOBO
(BufferedReader oboFile, String ontoName, String ontoDescription) Parse a OBO file and return its content as a BioJava Ontology object
-
Constructor Details
-
OboParser
public OboParser()
-
-
Method Details
-
parseOBO
public Ontology parseOBO(BufferedReader oboFile, String ontoName, String ontoDescription) throws ParseException, IOException Parse a OBO file and return its content as a BioJava Ontology object- Parameters:
oboFile
- the file to be parsedontoName
-ontoDescription
-- Returns:
- the ontology represented as a BioJava ontology file
- Throws:
ParseException
IOException
-