seq_here/
lib.rs

1//!
2//! [![Version](https://img.shields.io/badge/version-0.0.1-yellow.svg)]()
3//! [![GitHub](https://img.shields.io/badge/github-bio--here%2Fseq--here-blue.svg)](https://github.com/bio-here/seq-here)
4//! [![Build Status](https://travis-ci.org/bio-here/seq-here.svg?branch=master)](https://travis-ci.org/bio-here/seq-here)
5//! [![Crates.io](https://img.shields.io/crates/v/seq-here.svg)](https://crates.io/crates/seq-here)
6//! [![Documentation](https://docs.rs/seq-here/badge.svg)](https://docs.rs/seq-here)
7//! [![License](https://img.shields.io/crates/l/MIT.svg)]()!
8//!
9//! **Notice**: This project is still under development and not yet ready for production use.
10//!
11//! This crate provides several functions for bio-sequence file processing. It is designed to be fast and easy to use.
12//!
13//! Use the crate in your project by adding the following to your `Cargo.toml`:
14//! ```toml
15//! seq-here = "0.0.1"
16//! ```
17//!
18//! There are 3 modules in this crate for different purposes:
19//! - **info**: Get basic information about the input sequence file(s).
20//! - **convert**: Convert or process incoming sequence file(s).
21//! - **extract**: Extract specified sequence segment or file data.
22//!
23//!
24
25
26pub mod info;
27pub mod convert;
28pub mod extract;
29
30mod error;
31pub mod utils;