Skip to main content

holodeck_lib/
lib.rs

1#![deny(unsafe_code)]
2#![allow(clippy::cast_precision_loss)]
3
4#[cfg(any(target_pointer_width = "16", target_pointer_width = "32"))]
5compile_error!("holodeck requires a 64-bit or wider platform");
6
7pub mod bed;
8pub mod commands;
9pub mod error_model;
10pub mod fasta;
11pub mod fragment;
12pub mod haplotype;
13pub mod output;
14pub mod ploidy;
15pub mod read;
16pub mod read_naming;
17pub mod seed;
18pub mod sequence_dict;
19pub mod vcf;
20pub mod version;