[package] name = "alphabeta" version = "0.3.0" edition = "2021" description = "Tools for analysing epigenetic data." license = "GPL-3.0" repository = "https://github.com/constantingoeldel/alphabeta-rs" [lib] name = "alphabeta" path = "src/lib.rs" [[bin]] name = "alphabeta" path = "src/cli.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] argmin = "0.8" argmin-math = { version = "0.3", features = ["ndarray_latest-serde", "nalgebra_latest-serde"] } ndarray = { version = "0.15.0", features = ["blas"]} blas-src = { version = "0.8.0", features = ["openblas"] } openblas-src = { version = "0.10", features = ["static"] } rand = "0.8.5" rayon = "1.8" clap = { version = "4.4", features = ["derive"] } thiserror = "1.0" itertools = "0.12.0" plotters = "0.3.5" ndarray-stats = "0.5.1" noisy_float = "0.2.0" pedigree ={ path = "../pedigree", version = "0.3" } methylome ={ path = "../methylome", version = "0.3"} progress_bars ={ path = "../progress_bars" , version = "0.3"}