tsg 0.1.0

A tool to analyze and manipulate transcript segment graph (TSG)
1
2
3
4
5
6
7
8
use std::path::Path;

use crate::graph::TSGraph;
use anyhow::Result;

pub fn to_json<P: AsRef<Path>>(tsg_graph: &TSGraph, output: P) -> Result<()> {
    todo!()
}