[package]
edition = "2021"
name = "diced"
version = "0.1.3"
authors = ["Martin Larralde <martin.larralde@embl.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust reimplementation of the MinCED algorithm for identifying CRISPRs in full or assembled genomes."
homepage = "https://github.com/althonos/mincer"
readme = "README.md"
keywords = [
"bioinformatics",
"genomics",
"repeat",
"crispr",
]
categories = ["science"]
license = "GPL-3.0-or-later"
repository = "https://github.com/althonos/mincer"
[features]
default = ["memchr"]
[lib]
name = "diced"
path = "src/lib.rs"
[[example]]
name = "gff"
path = "examples/gff.rs"
[[test]]
name = "aquifex"
path = "tests/aquifex.rs"
[[test]]
name = "clostridioides"
path = "tests/clostridioides.rs"
[dependencies.memchr]
version = "2.7.2"
optional = true
[dependencies.strsim]
version = "0.11"
[dev-dependencies.noodles-fasta]
version = "0.38.0"
[dev-dependencies.noodles-gff]
version = "0.33.0"