ViTax-RAG: Alignment-augmented language model for viral taxonomy classification
Project description
ViTax-RAG: Retrieval-Augmented Language Model for Viral Taxonomy Classification
Introduction
ViTax-RAG is a hybrid viral taxonomy classification framework that integrates BLAST-based retrieval with a Bi-Hyena genomic language model to achieve adaptive, accurate, and robust taxonomic assignment from metagenomic sequences.
Installation
ViTax-RAG can be installed either via pip (recommended) or from source.
External Dependency: NCBI BLAST+ (Optional but Recommended)
ViTax-RAG optionally uses NCBI BLAST+ for retrieval-augmented inference.
Install via conda (recommended)
conda install -c bioconda blast
Verify installation:
which blastn
blastn -version
Option 1️⃣ (Recommended): Install via pip
pip install vitax-rag
This installs the ViTax-RAG command-line tool:
vitax-rag --help
Required External Data
ViTax-RAG requires external BLAST database files, which are not packaged inside the Python wheel.
git clone https://github.com/Ying-Lab/ViTax-Rag.git
cd ViTax-Rag
Quick Start
Basic run (automatic device selection)
vitax-rag \
--contigs test_contigs.fasta \
--data_dir ./data \
--out result.txt
Option 2️⃣ : Install from Source (Development Mode)
Install dependencies:
git clone https://github.com/Ying-Lab/ViTax-Rag.git
cd ViTax-Rag
pip install -r requirements.txt
Install NCBI BLAST+:
# 1) Download the latest BLAST+ tarball (adjust version if needed)
mkdir -p ~/downloads && cd ~/downloads
wget https://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/LATEST/ncbi-blast-2.12.0+-x64-linux.tar.gz
# 2) Extract and move to a permanent location
tar -zxvf ncbi-blast-2.12.0+-x64-linux.tar.gz
mv ncbi-blast-2.12.0+ ~/blast+
# 3) Persist PATH (so BLAST commands are available in every shell)
echo 'export PATH="$HOME/blast+/bin:$PATH"' >> ~/.bashrc
source ~/.bashrc
# 4) Verify installation
which blastn
blastn -version
Quick Start
Basic run (auto device selection):
python predict.py --contigs test_contigs.fasta --out output.txt --device auto
Adjust chunking and batch size for long contigs:
python predict.py --contigs test_contigs.fasta --chunk_size 2000 --window_size 400
Command-Line Options
--contigsFASTA input path, defaulttest_contigs.fasta--outoutput predictions file, defaultoutput.txt--confidenceconfidence threshold, default0.6--window_sizesliding step size, default400--chunk_sizechunk length, default2000--batch_sizebatch size, default64--rcUse bidirectional prediction, defaulttrue--augmentuse BLAST augmentation, defaulttrue--augment_lentarget augmented length, default4000--deviceauto/cpu/cuda, defaultauto
Output
-
One line per input sequence; fields are space-separated:
sequence_id label confidence -
sequence_id: taken from the FASTA header (text after>up to the first space) -
label: eitherunclassifiedorTaxonName_TaxonLevel -
TaxonLevel: one ofGenus,Family,Order,Class; if genus confidence is below--confidence, the classifier backs off to higher levels -
confidence: normalized score in[0, 1], formatted to two decimals; higher means stronger support for the predicted taxon -
Ordering: lines follow the order of sequences in the input FASTA
-
Device and augmentation: enabling
--rc(reverse complement) and--augment(BLAST) can change predictions and confidence -
Output file: written to the path specified by
--outand printed asDone, please check the output file: <path>
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vitax_rag-0.2.1.tar.gz.
File metadata
- Download URL: vitax_rag-0.2.1.tar.gz
- Upload date:
- Size: 159.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
191e5927ab7def89794c76d1db109c1602c93003e61f7f22ad91aafef1a5ce6c
|
|
| MD5 |
4490dfb9b411321d45743402bd2425a0
|
|
| BLAKE2b-256 |
be9824bb261475ad70922f0a6385f6a0baf61a1c12ef864bf8e8a32e3786e2fb
|
File details
Details for the file vitax_rag-0.2.1-py3-none-any.whl.
File metadata
- Download URL: vitax_rag-0.2.1-py3-none-any.whl
- Upload date:
- Size: 199.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43662ac6621019cb41d756df1ed184dbbbec1d6382dbc6d9e9a82c67c3f8b460
|
|
| MD5 |
e73917202054f1f77bbc4fd0979a6ce6
|
|
| BLAKE2b-256 |
2e47e893702bb32a09333abc4d6922c2b882b068aa8900562ea8d632df7c12ff
|