seqwish 0.1.3

A variation graph inducer - build pangenome graphs from pairwise alignments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate cbindgen;

use std::env;

fn main() {
    let crate_dir = env::var("CARGO_MANIFEST_DIR").unwrap();

    cbindgen::Builder::new()
        .with_crate(crate_dir)
        .with_language(cbindgen::Language::C)
        .with_cpp_compat(true) // Add extern "C" guards for C++
        .generate()
        .expect("Unable to generate bindings")
        .write_to_file("seqwish_rs.h");
}