Skip to content
Snippets Groups Projects

add an example to study the _recoding inbreeding_ phenomenon

Merged STEVAN Antoine requested to merge recoding-inbreeding into main
1 file
+ 8
0
Compare changes
  • Side-by-side
  • Inline
+ 8
0
@@ -223,6 +223,14 @@ struct Cli {
fn main() {
let cli = Cli::parse();
if cli.nb_measurements == 0 {
eprintln!(
"`--nb-measurements` should be a strictly positive integer, found {}",
cli.nb_measurements
);
exit(1);
}
let mut rng = thread_rng();
let bytes = random_bytes(cli.nb_bytes, &mut rng);
Loading