| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
rvDNA is an AI-native genomics engine in pure Rust (with WebAssembly + Node bindings): biomarker risk scoring, 23andMe genotyping, pharmacogenomics, variant calling, protein prediction, epigenomics, and HNSW vector search over genomic profiles — plus the .rvdna AI-native cognitive-container format.
20-SNP biomarker risk scoring · streaming anomaly detection · 64-dim profile vectors · 23andMe genotyping · CYP2D6/CYP2C19 pharmacogenomics · variant calling · protein prediction · HNSW similarity search — no Python, runs on the edge via WASM.
| Module | Capability |
|---|---|
| biomarker, biomarker_stream | 20-SNP biomarker risk scoring + streaming anomaly detection |
| genotyping | 23andMe genotype parsing & calling |
| pharma | pharmacogenomics — CYP2D6 / CYP2C19 star-alleles, drug-response |
| variant | variant calling pipeline |
| protein | protein structure / function prediction |
| alignment | Smith–Waterman sequence alignment |
| kmer, kmer_pagerank | k-mer analysis & PageRank over genomic graphs |
| epigenomics | temporal epigenomic modeling |
| health | health & biomarker reporting |
# Rust
cargo add rvdna
# Node / browser (NAPI + WASM wrapper)
npm install @ruvector/rvdnause rvdna::prelude::*;
// Score 20-SNP biomarker risk from a genotype profile.
let profile = GenomicProfile::from_23andme("genome.txt")?;
let risk = profile.biomarker_risk();
println!("risk vector (64-dim): {:?}", risk.vector());import rvdna from "@ruvector/rvdna";
// biomarker scoring, genotyping and .rvdna I/O — in Node or the browsercargo build --release # native lib + rvdna-cli
cargo test # test suite
cd npm/packages/rvdna && npm run build:napi # native/WASM bindingsConsumer genomics & 23andMe analysis · precision medicine & pharmacogenomics · biomarker risk scoring · variant calling pipelines · protein prediction · genomic similarity / cohort search with HNSW · edge & in-browser genomics.
MIT © Ruvector Team. Part of the ruvector ecosystem (extracted per ADR-257). Built on the published ruvector-* crates (HNSW, attention, GNN, solver).
Research/educational software — not a medical device and not for clinical diagnosis.
| Back | FazBrowse Home | New Git URL |