microBioRust_seqmetrics/
lib.rs

1//!  The aim of this crate is to provide Microbiology friendly Rust functions for bioinformatics.
2//!  
3//!  
4//!  With the genbank parser, you are able to parse a genbank format file, then write into gff3 format
5//!
6//!  It is also possible to print the DNA sequences extracted from the coding sequences (genes, ffn format),
7//!  plus the protein fasta sequences (faa format).
8//!
9//!  Additionally, you can create new features and records and save them either in genbank or gff3 format
10//!
11#![allow(non_snake_case)]
12pub mod metrics;
13pub mod write_dst_csv;
14pub mod hamming;