[package]
edition = "2021"
rust-version = "1.80"
name = "gapsmith-align"
version = "0.1.0"
authors = ["Robert Hoehndorf <robert.hoehndorf@kaust.edu.sa>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Alignment abstraction for gapsmith: blast/diamond/mmseqs2 runners + precomputed TSV ingestion."
homepage = "https://bio-ontology-research-group.github.io/gapsmith/"
readme = "README.md"
keywords = [
"bioinformatics",
"genomics",
"metabolism",
"metabolic-network",
"fba",
]
categories = [
"science",
"command-line-utilities",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/bio-ontology-research-group/gapsmith"
[lib]
name = "gapsmith_align"
path = "src/lib.rs"
[[test]]
name = "batch"
path = "tests/batch.rs"
[[test]]
name = "parity"
path = "tests/parity.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.serde]
version = "1"
features = [
"derive",
"rc",
]
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dev-dependencies]