[][src]Crate fastobo_graphs

fastobo-graphs Star me

OBO Graphs decoder and encoder in Rust.

TravisCI Codecov License Source Crate Documentation Changelog GitHub issues

Overview

This library provides an implementation of the OBO Graphs schema specified by the Gene Ontology to provide developers with a data format easier to use than plain ontology files in OBO or OWL format.

Feedback

Found a bug ? Have an enhancement request ? Head over to the GitHub issue tracker of the project if you need to report or ask something. If you are filling in on a bug, please include as much information as you can about the issue, and try to recreate the same bug in a simple, easily reproducible situation.

About

This project is currently being developed by Martin Larralde as part of a Master's Degree internship in the BBOP team of the Lawrence Berkeley National Laboratory, under the supervision of Chris Mungall.

Modules

constants

Constant datatype IRIs and base URIs used literally during translation.

error

Standard error implementation for this crate.

model

The OBO Graphs data model and serde implementation.

Traits

FromGraphfeature="obo"

Trait to convert an OBO graph element into an OBO syntax node.

IntoGraphfeature="obo"

Trait to convert an OBO document into a complete OBO graph document.

Functions

from_file

Read an OBO graph from a file on the local filesystem.

from_reader

Read an OBO graph from a Read implementor.

from_str

Read an OBO graph from a string containing a JSON or YAML serialization.

to_file

Write an OBO graph to a file on the local filesystem.

to_string

Write an OBO graph to a string.

to_writer

Write an OBO graph to a Write implementor.