bed2gtf/lib.rs
1// Copyright (c) 2025 Alejandro Gonzalez-Irribarren <alejandrxgzi@gmail.com>
2// Distributed under the terms of the Apache License, Version 2.0.
3
4pub mod app;
5pub mod cli;
6pub(crate) mod config;
7pub(crate) mod convert;
8pub(crate) mod detect;
9pub(crate) mod error;
10pub(crate) mod isoforms;
11pub(crate) mod memory;
12
13pub use app::run_cli;
14pub use cli::{Args, BedType, OutputFormat};
15pub use error::{Bed2GtfError, Result};