genie-sys 0.1.1

A rust binding for `Genie` (A Open Source MPEG-G Codec).
docs.rs failed to build genie-sys-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Genie-sys

A rust binding for Genie (A Open Source MPEG-G Codec).

Goal

This crate aims to provide application programing interface (API) for C++ implementation of Genie.

Quick Example Usage

use genie_sys::*;

fn main() {
    let file = concat!(env!("OUT_DIR"), "/genie/data/fastq/simplest.fastq").to_string();
    let ofile = "output.mgrec".to_string();
    unsafe { geniesys::convert_fastq(file, ofile, 1) };
}
  • More example use cases in tests folder.

APIs

Transcoding

  • convert_fastq
  • convert_mgrec
  • convert_fasta

Nucleotide Encoding

TODO:

Sequence Transformation

TODO:

Genie Core API

Could be enabled by adding feature core_capi.

[!WARNING] Limitation

C++ API will be supported when autocxx could resolve issue with Apple C++ headers >= 16. (#1396)

Contact

Sengrith PROM psengrith@gmail.com