ATGlib

ATGlib is a Rust library to work with genomic transcript data. It handles several file formats, such as GTF, GenePred(ext) and Refgene. You can generate bed files, fasta sequences or custom feature sequences.

If you are looking for an actual application, or a command line tool to work with transcripts, GTF files etc, use ATG instead. It is using ATGlib behind the scenes and provides a simple to use interface.

Documentation

The library API is mostly documented inline and available on docs.rs

Examples

Convert GTF to RefGene

```rust use atglib::gtf::Reader; use atglib::refgene::Writer; use atglib::models::{TranscriptRead, TranscriptWrite};

let mut reader = Reader::fromfile("tests/data/example.gtf") .unwraporelse(|| panic!("Error opening input file."));

let mut writer = Writer::fromfile("/dev/null") .unwraporelse(|| panic!("Unable to open output file"));

let transcripts = reader.transcripts() .unwraporelse(|err| panic!("Error parsing GTF: {}", err));

match writer.writetranscripts(&transcripts) { Ok() => println!("Success"), Err(err) => panic!("Error writing RefGene file: {}", err) }; ```

ToDo / Next tasks

Known issues

GTF parsing