bitdag 0.1.4

A crate to deconstruct the hierrachie of a DAG into a Bitmatrix for fast child-parent-queries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Format-specific graph adapters and parsers.
//!
//! This module contains implementations of the [`ToEdges`](crate::traits::ToEdges) trait
//! for various standard ontology and graph representation formats. By leveraging the
//! parsers in these sub-modules, you can seamlessly convert external documents into a
//! flat vector of edges that the `BitDag` can ingest.

/// Adapter implementations for JSON-based ontology formats (via the `ontolius` crate).
#[cfg(feature = "json_ontology")]
pub mod json;

/// Adapter implementations for OBO-formatted ontology documents (via the `fastobo` crate).
#[cfg(feature = "obo")]
pub mod obo;