the same technique applies to fasta-redux
This commit is contained in:
parent
960e85c8ea
commit
12d990d385
@ -39,199 +39,338 @@
|
|||||||
// OF THE POSSIBILITY OF SUCH DAMAGE.
|
// OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
use std::cmp::min;
|
use std::cmp::min;
|
||||||
use std::env;
|
use std::io::{self, Write};
|
||||||
use std::io;
|
use std::sync::{Arc, Mutex};
|
||||||
use std::io::BufWriter;
|
use std::thread;
|
||||||
use std::io::prelude::*;
|
|
||||||
|
|
||||||
const LINE_LEN: usize = 60;
|
const LINE_LEN: usize = 60;
|
||||||
|
|
||||||
|
const BLOCK_LINES: usize = 512;
|
||||||
|
const BLOCK_THOROUGHPUT: usize = LINE_LEN * BLOCK_LINES;
|
||||||
|
const BLOCK_LEN: usize = BLOCK_THOROUGHPUT + BLOCK_LINES;
|
||||||
|
|
||||||
|
const STDIN_BUF: usize = (LINE_LEN + 1) * 1024;
|
||||||
const LOOKUP_SIZE: usize = 4 * 1024;
|
const LOOKUP_SIZE: usize = 4 * 1024;
|
||||||
const LOOKUP_SCALE: f32 = (LOOKUP_SIZE - 1) as f32;
|
const LOOKUP_SCALE: f32 = (LOOKUP_SIZE - 1) as f32;
|
||||||
|
|
||||||
// Random number generator constants
|
const ALU: &'static [u8] =
|
||||||
const IM: u32 = 139968;
|
b"GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTGG\
|
||||||
const IA: u32 = 3877;
|
GAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGAGA\
|
||||||
const IC: u32 = 29573;
|
CCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAAAAT\
|
||||||
|
ACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAATCCCA\
|
||||||
|
GCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAACCCGGG\
|
||||||
|
AGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTGCACTCC\
|
||||||
|
AGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA";
|
||||||
|
|
||||||
const ALU: &'static str = "GGCCGGGCGCGGTGGCTCACGCCTGTAATCCCAGCACTTTG\
|
const IUB: &'static [(u8, f32)] =
|
||||||
GGAGGCCGAGGCGGGCGGATCACCTGAGGTCAGGAGTTCGA\
|
&[(b'a', 0.27), (b'c', 0.12), (b'g', 0.12),
|
||||||
GACCAGCCTGGCCAACATGGTGAAACCCCGTCTCTACTAAA\
|
(b't', 0.27), (b'B', 0.02), (b'D', 0.02),
|
||||||
AATACAAAAATTAGCCGGGCGTGGTGGCGCGCGCCTGTAAT\
|
(b'H', 0.02), (b'K', 0.02), (b'M', 0.02),
|
||||||
CCCAGCTACTCGGGAGGCTGAGGCAGGAGAATCGCTTGAAC\
|
(b'N', 0.02), (b'R', 0.02), (b'S', 0.02),
|
||||||
CCGGGAGGCGGAGGTTGCAGTGAGCCGAGATCGCGCCACTG\
|
(b'V', 0.02), (b'W', 0.02), (b'Y', 0.02)];
|
||||||
CACTCCAGCCTGGGCGACAGAGCGAGACTCCGTCTCAAAAA";
|
|
||||||
|
|
||||||
const NULL_AMINO_ACID: AminoAcid = AminoAcid { c: ' ' as u8, p: 0.0 };
|
const HOMOSAPIENS: &'static [(u8, f32)] =
|
||||||
|
&[(b'a', 0.3029549426680),
|
||||||
|
(b'c', 0.1979883004921),
|
||||||
|
(b'g', 0.1975473066391),
|
||||||
|
(b't', 0.3015094502008)];
|
||||||
|
|
||||||
static IUB: [AminoAcid;15] = [
|
// We need a specific Rng,
|
||||||
AminoAcid { c: 'a' as u8, p: 0.27 },
|
// so implement this manually
|
||||||
AminoAcid { c: 'c' as u8, p: 0.12 },
|
|
||||||
AminoAcid { c: 'g' as u8, p: 0.12 },
|
|
||||||
AminoAcid { c: 't' as u8, p: 0.27 },
|
|
||||||
AminoAcid { c: 'B' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'D' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'H' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'K' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'M' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'N' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'R' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'S' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'V' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'W' as u8, p: 0.02 },
|
|
||||||
AminoAcid { c: 'Y' as u8, p: 0.02 },
|
|
||||||
];
|
|
||||||
|
|
||||||
static HOMO_SAPIENS: [AminoAcid;4] = [
|
const MODULUS: u32 = 139968;
|
||||||
AminoAcid { c: 'a' as u8, p: 0.3029549426680 },
|
const MULTIPLIER: u32 = 3877;
|
||||||
AminoAcid { c: 'c' as u8, p: 0.1979883004921 },
|
const ADDITIVE: u32 = 29573;
|
||||||
AminoAcid { c: 'g' as u8, p: 0.1975473066391 },
|
|
||||||
AminoAcid { c: 't' as u8, p: 0.3015094502008 },
|
|
||||||
];
|
|
||||||
|
|
||||||
fn sum_and_scale(a: &'static [AminoAcid]) -> Vec<AminoAcid> {
|
// Why doesn't rust already have this?
|
||||||
let mut p = 0f32;
|
// Algorithm directly taken from Wikipedia
|
||||||
let mut result: Vec<AminoAcid> = a.iter().map(|a_i| {
|
fn powmod(mut base: u64, mut exponent: u32, modulus: u64) -> u64 {
|
||||||
p += a_i.p;
|
let mut ret = 1;
|
||||||
AminoAcid { c: a_i.c, p: p * LOOKUP_SCALE }
|
base %= modulus;
|
||||||
}).collect();
|
|
||||||
let result_len = result.len();
|
|
||||||
result[result_len - 1].p = LOOKUP_SCALE;
|
|
||||||
result
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Copy, Clone)]
|
while exponent > 0 {
|
||||||
struct AminoAcid {
|
if exponent & 1 == 1 {
|
||||||
c: u8,
|
ret *= base;
|
||||||
p: f32,
|
ret %= modulus;
|
||||||
}
|
}
|
||||||
|
exponent >>= 1;
|
||||||
struct RepeatFasta<'a, W:'a> {
|
base *= base;
|
||||||
alu: &'static str,
|
base %= modulus;
|
||||||
out: &'a mut W
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a, W: Write> RepeatFasta<'a, W> {
|
|
||||||
fn new(alu: &'static str, w: &'a mut W) -> RepeatFasta<'a, W> {
|
|
||||||
RepeatFasta { alu: alu, out: w }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn make(&mut self, n: usize) -> io::Result<()> {
|
ret
|
||||||
let alu_len = self.alu.len();
|
}
|
||||||
let mut buf = vec![0; alu_len + LINE_LEN];
|
|
||||||
let alu: &[u8] = self.alu.as_bytes();
|
|
||||||
|
|
||||||
for (slot, val) in buf.iter_mut().zip(alu) {
|
// Just a typical LCRNG
|
||||||
*slot = *val;
|
pub struct Rng {
|
||||||
}
|
last: u32
|
||||||
let buf_len = buf.len();
|
}
|
||||||
for (slot, val) in buf[alu_len..buf_len].iter_mut().zip(&alu[..LINE_LEN]) {
|
|
||||||
*slot = *val;
|
|
||||||
}
|
|
||||||
|
|
||||||
let mut pos = 0;
|
impl Rng {
|
||||||
let mut bytes;
|
pub fn new() -> Rng {
|
||||||
let mut n = n;
|
Rng { last: 42 }
|
||||||
while n > 0 {
|
}
|
||||||
bytes = min(LINE_LEN, n);
|
|
||||||
try!(self.out.write_all(&buf[pos..pos + bytes]));
|
pub fn max_value() -> u32 {
|
||||||
try!(self.out.write_all(&[b'\n']));
|
MODULUS - 1
|
||||||
pos += bytes;
|
}
|
||||||
if pos > alu_len {
|
|
||||||
pos -= alu_len;
|
pub fn normalize(p: f32) -> u32 {
|
||||||
|
(p * MODULUS as f32).floor() as u32
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn gen(&mut self) -> u32 {
|
||||||
|
self.last = (self.last * MULTIPLIER + ADDITIVE) % MODULUS;
|
||||||
|
self.last
|
||||||
|
}
|
||||||
|
|
||||||
|
// This allows us to fast-forward the RNG,
|
||||||
|
// allowing us to run it in parallel.
|
||||||
|
pub fn future(&self, n: u32) -> Rng {
|
||||||
|
let a = MULTIPLIER as u64;
|
||||||
|
let b = ADDITIVE as u64;
|
||||||
|
let m = MODULUS as u64;
|
||||||
|
|
||||||
|
// (a^n - 1) mod (a-1) m
|
||||||
|
// x_k = ((a^n x_0 mod m) + --------------------- b) mod m
|
||||||
|
// a - 1
|
||||||
|
//
|
||||||
|
// Since (a - 1) divides (a^n - 1) mod (a-1) m,
|
||||||
|
// the subtraction does not overflow and thus can be non-modular.
|
||||||
|
//
|
||||||
|
let new_seed =
|
||||||
|
(powmod(a, n, m) * self.last as u64) % m +
|
||||||
|
(powmod(a, n, (a-1) * m) - 1) / (a-1) * b;
|
||||||
|
|
||||||
|
Rng { last: (new_seed % m) as u32 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// This will end up keeping track of threads, like
|
||||||
|
// in the other multithreaded Rust version, in
|
||||||
|
// order to keep writes in order.
|
||||||
|
//
|
||||||
|
// This is stolen from another multithreaded Rust
|
||||||
|
// implementation, although that implementation
|
||||||
|
// was not able to parallelize the RNG itself.
|
||||||
|
struct BlockSubmitter<W: io::Write> {
|
||||||
|
writer: W,
|
||||||
|
pub waiting_on: usize,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<W: io::Write> BlockSubmitter<W> {
|
||||||
|
fn submit(&mut self, data: &[u8], block_num: usize) -> Option<io::Result<()>> {
|
||||||
|
if block_num == self.waiting_on {
|
||||||
|
self.waiting_on += 1;
|
||||||
|
Some(self.submit_async(data))
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
None
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn submit_async(&mut self, data: &[u8]) -> io::Result<()> {
|
||||||
|
self.writer.write_all(data)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// For repeating strings as output
|
||||||
|
fn fasta_static<W: io::Write>(
|
||||||
|
writer: &mut W,
|
||||||
|
header: &[u8],
|
||||||
|
data: &[u8],
|
||||||
|
mut n: usize
|
||||||
|
) -> io::Result<()>
|
||||||
|
{
|
||||||
|
// The aim here is to print a short(ish) string cyclically
|
||||||
|
// with line breaks as appropriate.
|
||||||
|
//
|
||||||
|
// The secret technique is to repeat the string such that
|
||||||
|
// any wanted line is a single offset in the string.
|
||||||
|
//
|
||||||
|
// This technique is stolen from the Haskell version.
|
||||||
|
|
||||||
|
try!(writer.write_all(header));
|
||||||
|
|
||||||
|
// Maximum offset is data.len(),
|
||||||
|
// Maximum read len is LINE_LEN
|
||||||
|
let stream = data.iter().cloned().cycle();
|
||||||
|
let mut extended: Vec<u8> = stream.take(data.len() + LINE_LEN + 1).collect();
|
||||||
|
|
||||||
|
let mut offset = 0;
|
||||||
|
while n > 0 {
|
||||||
|
let write_len = min(LINE_LEN, n);
|
||||||
|
let end = offset + write_len;
|
||||||
|
n -= write_len;
|
||||||
|
|
||||||
|
let tmp = extended[end];
|
||||||
|
extended[end] = b'\n';
|
||||||
|
try!(writer.write_all(&extended[offset..end + 1]));
|
||||||
|
extended[end] = tmp;
|
||||||
|
|
||||||
|
offset = end;
|
||||||
|
offset %= data.len();
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// For RNG streams as output
|
||||||
|
fn fasta<W: io::Write + Send + 'static>(
|
||||||
|
submitter: &Arc<Mutex<BlockSubmitter<W>>>,
|
||||||
|
header: &[u8],
|
||||||
|
table: &'static [(u8, f32)],
|
||||||
|
rng: &mut Rng,
|
||||||
|
n: usize
|
||||||
|
) -> io::Result<()>
|
||||||
|
{
|
||||||
|
// Here the lookup table is part of the algorithm and needs the
|
||||||
|
// original probabilities (scaled with the LOOKUP_SCALE), because
|
||||||
|
// Isaac says so :-)
|
||||||
|
fn sum_and_scale(a: &'static [(u8, f32)]) -> Vec<(u8, f32)> {
|
||||||
|
let mut p = 0f32;
|
||||||
|
let mut result: Vec<(u8, f32)> = a.iter().map(|e| {
|
||||||
|
p += e.1;
|
||||||
|
(e.0, p * LOOKUP_SCALE)
|
||||||
|
}).collect();
|
||||||
|
let result_len = result.len();
|
||||||
|
result[result_len - 1].1 = LOOKUP_SCALE;
|
||||||
|
result
|
||||||
|
}
|
||||||
|
|
||||||
|
fn make_lookup(a: &[(u8, f32)]) -> [(u8, f32); LOOKUP_SIZE] {
|
||||||
|
let mut lookup = [(0, 0f32); LOOKUP_SIZE];
|
||||||
|
let mut j = 0;
|
||||||
|
for (i, slot) in lookup.iter_mut().enumerate() {
|
||||||
|
while a[j].1 < (i as f32) {
|
||||||
|
j += 1;
|
||||||
}
|
}
|
||||||
n -= bytes;
|
*slot = a[j];
|
||||||
}
|
}
|
||||||
Ok(())
|
lookup
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
try!(submitter.lock().unwrap().submit_async(header));
|
||||||
|
}
|
||||||
|
|
||||||
|
let lookup_table = Arc::new(make_lookup(&sum_and_scale(table)));
|
||||||
|
|
||||||
|
let thread_count = 4;
|
||||||
|
let mut threads = Vec::new();
|
||||||
|
for block_num in (0..thread_count) {
|
||||||
|
let offset = BLOCK_THOROUGHPUT * block_num;
|
||||||
|
|
||||||
|
let local_submitter = submitter.clone();
|
||||||
|
let local_lookup_table = lookup_table.clone();
|
||||||
|
let local_rng = rng.future(offset as u32);
|
||||||
|
|
||||||
|
threads.push(thread::spawn(move || {
|
||||||
|
gen_block(
|
||||||
|
local_submitter,
|
||||||
|
local_lookup_table,
|
||||||
|
local_rng,
|
||||||
|
n.saturating_sub(offset),
|
||||||
|
block_num,
|
||||||
|
thread_count
|
||||||
|
)
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
for thread in threads {
|
||||||
|
try!(thread.join().unwrap());
|
||||||
|
}
|
||||||
|
|
||||||
|
*rng = rng.future(n as u32);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn make_lookup(a: &[AminoAcid]) -> [AminoAcid;LOOKUP_SIZE] {
|
// A very optimized writer.
|
||||||
let mut lookup = [ NULL_AMINO_ACID;LOOKUP_SIZE ];
|
// I have a feeling a simpler version wouldn't slow
|
||||||
let mut j = 0;
|
// things down too much, though, since the RNG
|
||||||
for (i, slot) in lookup.iter_mut().enumerate() {
|
// is the really heavy hitter.
|
||||||
while a[j].p < (i as f32) {
|
fn gen_block<W: io::Write>(
|
||||||
j += 1;
|
submitter: Arc<Mutex<BlockSubmitter<W>>>,
|
||||||
}
|
lookup_table: Arc<[(u8, f32)]>,
|
||||||
*slot = a[j];
|
mut rng: Rng,
|
||||||
}
|
mut length: usize,
|
||||||
lookup
|
mut block_num: usize,
|
||||||
}
|
block_stride: usize,
|
||||||
|
) -> io::Result<()>
|
||||||
|
{
|
||||||
|
// Include newlines in block
|
||||||
|
length += length / LINE_LEN;
|
||||||
|
let block: &mut [u8] = &mut [b'\n'; BLOCK_LEN];
|
||||||
|
|
||||||
struct RandomFasta<'a, W:'a> {
|
while length > 0 {
|
||||||
seed: u32,
|
{
|
||||||
lookup: [AminoAcid;LOOKUP_SIZE],
|
let gen_into = &mut block[..min(length, BLOCK_LEN)];
|
||||||
out: &'a mut W,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl<'a, W: Write> RandomFasta<'a, W> {
|
// Write random numbers, skipping newlines
|
||||||
fn new(w: &'a mut W, a: &[AminoAcid]) -> RandomFasta<'a, W> {
|
for (i, byte) in gen_into.iter_mut().enumerate() {
|
||||||
RandomFasta {
|
if (i + 1) % (LINE_LEN + 1) != 0 {
|
||||||
seed: 42,
|
let p = rng.gen() as f32 * (LOOKUP_SCALE / MODULUS as f32);
|
||||||
out: w,
|
*byte = lookup_table[p as usize..LOOKUP_SIZE].iter().find(
|
||||||
lookup: make_lookup(a),
|
|le| le.1 >= p).unwrap().0;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
fn rng(&mut self, max: f32) -> f32 {
|
|
||||||
self.seed = (self.seed * IA + IC) % IM;
|
|
||||||
(max * self.seed as f32) / (IM as f32)
|
|
||||||
}
|
|
||||||
|
|
||||||
fn nextc(&mut self) -> u8 {
|
|
||||||
let r = self.rng(LOOKUP_SCALE);
|
|
||||||
for i in (r as usize..LOOKUP_SIZE) {
|
|
||||||
if self.lookup[i].p >= r {
|
|
||||||
return self.lookup[i].c;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
unreachable!();
|
|
||||||
}
|
|
||||||
|
|
||||||
fn make(&mut self, n: usize) -> io::Result<()> {
|
let write_out = {
|
||||||
let lines = n / LINE_LEN;
|
if length >= BLOCK_LEN { &mut *block }
|
||||||
let chars_left = n % LINE_LEN;
|
else if length % (LINE_LEN + 1) == 0 { &mut block[..length] }
|
||||||
let mut buf = [0;LINE_LEN + 1];
|
else { &mut block[..length + 1] }
|
||||||
|
};
|
||||||
|
|
||||||
for _ in 0..lines {
|
*write_out.last_mut().unwrap() = b'\n';
|
||||||
for i in 0..LINE_LEN {
|
loop {
|
||||||
buf[i] = self.nextc();
|
// Make sure to release lock before calling `yield_now`
|
||||||
|
let res = { submitter.lock().unwrap().submit(write_out, block_num) };
|
||||||
|
|
||||||
|
match res {
|
||||||
|
Some(result) => { try!(result); break; }
|
||||||
|
None => std::thread::yield_now()
|
||||||
}
|
}
|
||||||
buf[LINE_LEN] = '\n' as u8;
|
|
||||||
try!(self.out.write(&buf));
|
|
||||||
}
|
}
|
||||||
for i in 0..chars_left {
|
block_num += block_stride;
|
||||||
buf[i] = self.nextc();
|
rng = rng.future((BLOCK_THOROUGHPUT * (block_stride - 1)) as u32);
|
||||||
}
|
length = length.saturating_sub(BLOCK_LEN * (block_stride - 1));
|
||||||
self.out.write_all(&buf[..chars_left])
|
|
||||||
|
length = length.saturating_sub(BLOCK_LEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn run<W: io::Write + Send + 'static>(writer: W) -> io::Result<()> {
|
||||||
|
let n = std::env::args_os().nth(1)
|
||||||
|
.and_then(|s| s.into_string().ok())
|
||||||
|
.and_then(|n| n.parse().ok())
|
||||||
|
.unwrap_or(1000);
|
||||||
|
|
||||||
|
let rng = &mut Rng::new();
|
||||||
|
|
||||||
|
// Use automatic buffering for the static version...
|
||||||
|
let mut writer = io::BufWriter::with_capacity(STDIN_BUF, writer);
|
||||||
|
try!(fasta_static(&mut writer, b">ONE Homo sapiens alu\n", ALU, n * 2));
|
||||||
|
|
||||||
|
// ...but the dynamic version does its own buffering already
|
||||||
|
let writer = try!(writer.into_inner());
|
||||||
|
let submitter = Arc::new(Mutex::new(BlockSubmitter { writer: writer, waiting_on: 0 }));
|
||||||
|
|
||||||
|
{ submitter.lock().unwrap().waiting_on = 0; }
|
||||||
|
try!(fasta(&submitter, b">TWO IUB ambiguity codes\n", &IUB, rng, n * 3));
|
||||||
|
{ submitter.lock().unwrap().waiting_on = 0; }
|
||||||
|
try!(fasta(&submitter, b">THREE Homo sapiens frequency\n", &HOMOSAPIENS, rng, n * 5));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let mut args = env::args();
|
run(io::stdout()).unwrap()
|
||||||
let n = if args.len() > 1 {
|
|
||||||
args.nth(1).unwrap().parse::<usize>().unwrap()
|
|
||||||
} else {
|
|
||||||
5
|
|
||||||
};
|
|
||||||
|
|
||||||
let stdout = io::stdout();
|
|
||||||
let mut out = BufWriter::new(stdout.lock());
|
|
||||||
|
|
||||||
out.write_all(b">ONE Homo sapiens alu\n").unwrap();
|
|
||||||
{
|
|
||||||
let mut repeat = RepeatFasta::new(ALU, &mut out);
|
|
||||||
repeat.make(n * 2).unwrap();
|
|
||||||
}
|
|
||||||
|
|
||||||
out.write_all(b">TWO IUB ambiguity codes\n").unwrap();
|
|
||||||
let iub = sum_and_scale(&IUB);
|
|
||||||
let mut random = RandomFasta::new(&mut out, &iub);
|
|
||||||
random.make(n * 3).unwrap();
|
|
||||||
|
|
||||||
random.out.write_all(b">THREE Homo sapiens frequency\n").unwrap();
|
|
||||||
let homo_sapiens = sum_and_scale(&HOMO_SAPIENS);
|
|
||||||
random.lookup = make_lookup(&homo_sapiens);
|
|
||||||
random.make(n * 5).unwrap();
|
|
||||||
|
|
||||||
random.out.write_all(b"\n").unwrap();
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user