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 meth;
14pub mod methylation_tags;
15pub mod output;
16pub mod ploidy;
17pub mod read;
18pub mod read_naming;
19pub mod seed;
20pub mod sequence_dict;
21pub mod vcf;
22pub mod version;