genome 0.3.0

A simple package used to generate DNA used for GAN generator
Documentation

Genome

Built using rust, used to create cryptobsj

Example

Creating a DNA sequence

use genome::DNA;
let dna = DNA::new(2, 2);

Converting DNA to string

use genome::DNA;
let dna = DNA::new(2, 2);
let dna_string = dna.to_string();

Installation

To use this package, add it in the [dependencies] in your Cargo.toml

[dependencies]
genome = "0.1.0"