1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
# Kalign Python Package
Python bindings for [Kalign](https://github.com/TimoLassmann/kalign), a fast multiple sequence alignment program for biological sequences (DNA, RNA, protein).
## Installation
```bash
pip install kalign-python
```
Optional dependencies for ecosystem integration:
```bash
pip install kalign-python[biopython] # Biopython integration (fmt="biopython", I/O helpers)
pip install kalign-python[skbio] # scikit-bio integration (fmt="skbio")
pip install kalign-python[io] # I/O helpers (requires Biopython)
pip install kalign-python[analysis] # pandas + matplotlib for downstream analysis
pip install kalign-python[all] # all of the above
```
## Quick Start
```python
import kalign
sequences = [
"ATCGATCGATCG",
"ATCGTCGATCG",
"ATCGATCATCG"
]
# Default mode — consistency anchors + VSM (best general-purpose)
aligned = kalign.align(sequences)
# Fast mode — no consistency, fastest
aligned = kalign.align(sequences, mode="fast")
# Precise mode — ensemble + realign, highest precision
aligned = kalign.align(sequences, mode="precise")
```
## Modes
Kalign v3.5 provides three named modes that package the best configurations:
| Mode | Python | CLI | Description |
|------|--------|-----|-------------|
| **default** | `mode="default"` or omit | `kalign` | Consistency anchors + VSM. Best general-purpose. |
| **fast** | `mode="fast"` | `kalign --fast` | VSM only. Fastest, similar to kalign v3.4. |
| **precise** | `mode="precise"` | `kalign --precise` | Ensemble(3) + VSM + realign. Highest precision. |
Explicit parameters always override mode defaults:
```python
# Fast base + 5 ensemble runs
aligned = kalign.align(sequences, mode="fast", ensemble=5)
# Precise base + custom gap penalty
aligned = kalign.align(sequences, mode="precise", gap_open=8.0)
```
Mode constants are also available: `kalign.MODE_DEFAULT`, `kalign.MODE_FAST`, `kalign.MODE_PRECISE`.
## Core API
### `kalign.align()`
```python
aligned = kalign.align(
sequences, # list of str
mode=None, # "default", "fast", "precise", or None (= default)
seq_type="auto", # "auto", "dna", "rna", "protein", "divergent", "internal"
gap_open=None, # positive float, or None for defaults
gap_extend=None, # positive float, or None for defaults
terminal_gap_extend=None,
n_threads=None, # int, or None for global default
refine="none", # refinement mode: "none", "all", "confident", "inline"
ensemble=0, # number of ensemble runs (0 = off, try 3-5)
min_support=0, # explicit consensus threshold (0 = auto)
fmt="plain", # "plain", "biopython", "skbio"
ids=None, # list of str (for biopython/skbio output)
)
```
Returns a list of aligned strings (default), a `Bio.Align.MultipleSeqAlignment` (`fmt="biopython"`), or a `skbio.TabularMSA` (`fmt="skbio"`).
When `ensemble > 0` and `fmt="biopython"`, per-residue confidence is attached as HMMER-style PP `letter_annotations["posterior_probability"]`.
### `kalign.align_from_file()`
Align sequences directly from a FASTA, MSF, or Clustal file:
```python
result = kalign.align_from_file("sequences.fasta", seq_type="protein")
for name, seq in zip(result.names, result.sequences):
print(f"{name}: {seq}")
```
Returns an `AlignedSequences` object with `.names`, `.sequences`, and optional confidence fields (see below).
Additional parameters for advanced use:
```python
result = kalign.align_from_file(
"input.fasta",
mode="precise", # or "default", "fast"
ensemble=5, # override: 5 runs instead of mode default (3)
min_support=0, # consensus threshold (0 = auto)
save_poar="consensus.poar", # save POAR table for re-thresholding
# load_poar="consensus.poar", # OR load pre-computed POAR
refine="none", # refinement mode
)
```
### `kalign.compare()`
Score a test alignment against a reference using the Sum-of-Pairs (SP) score:
```python
score = kalign.compare("reference.msf", "test.fasta")
print(f"SP score: {score:.1f}") # 0 (no match) to 100 (identical)
```
### `kalign.compare_detailed()`
Detailed alignment comparison returning POAR recall/precision/F1/TC:
```python
scores = kalign.compare_detailed("reference.msf", "test.fasta")
print(f"F1: {scores['f1']:.3f}, TC: {scores['tc']:.3f}")
```
### `kalign.write_alignment()`
Write aligned sequences to a file:
```python
kalign.write_alignment(aligned, "output.fasta", format="fasta", ids=ids)
```
Supported formats: `fasta`, `clustal`, `stockholm`, `phylip` (non-FASTA formats require Biopython).
## Ensemble Alignment & Confidence Scores
Ensemble mode runs multiple alignments with varied parameters and combines results via POAR (Pairs of Aligned Residues) consensus. The simplest way to use it is `mode="precise"` (ensemble=3 + realign). For more control, set `ensemble` directly.
```python
import kalign
# Precise mode: ensemble(3) + realign — highest precision
result = kalign.align_from_file("proteins.fasta", mode="precise")
# Or: explicit 5 ensemble runs
result = kalign.align_from_file("proteins.fasta", ensemble=5)
# Per-column confidence: average agreement across ensemble runs [0..1]
print(result.column_confidence[:10]) # e.g. [0.93, 0.87, 1.0, ...]
# Per-residue confidence: per-sequence, per-position agreement [0..1]
print(result.residue_confidence[0][:10]) # e.g. [0.95, 0.90, 1.0, ...]
```
### POAR Save/Load
Save the POAR consensus table to avoid re-running the ensemble when experimenting with thresholds:
```python
# First run: compute ensemble and save POAR
kalign.align_file_to_file("input.fa", "output.fa", ensemble=5,
save_poar="consensus.poar")
# Later: instant re-threshold from saved POAR (no re-alignment)
kalign.align_file_to_file("input.fa", "output2.fa",
load_poar="consensus.poar", min_support=3)
```
### Stockholm Output with Confidence
Write confidence annotations in Stockholm format (`#=GR PP` per-residue, `#=GC PP_cons` per-column):
```python
result = kalign.align_from_file("input.fasta", ensemble=5)
kalign.write_alignment(
result.sequences, "output.sto", format="stockholm",
ids=result.names,
column_confidence=result.column_confidence,
residue_confidence=result.residue_confidence,
)
```
Confidence uses HMMER-style PP encoding: `*`=95%+, `9`=85-95%, ..., `0`=0-5%, `.`=gap.
### Biopython Per-Residue PP
When using `fmt="biopython"` with ensemble, per-residue confidence is attached as `letter_annotations["posterior_probability"]`:
```python
aln = kalign.align(seqs, ensemble=3, fmt="biopython", ids=ids)
print(aln[0].letter_annotations["posterior_probability"]) # e.g. "998.76*9..."
```
## Threading
```python
import kalign
kalign.set_num_threads(4) # set global default
n = kalign.get_num_threads() # query current default
# or override per call
aligned = kalign.align(sequences, n_threads=8)
```
Thread settings are thread-local, so different threads can use different defaults.
## Utilities (`kalign.utils`)
Requires only NumPy (installed automatically):
```python
import kalign
aligned = kalign.align(sequences)
arr = kalign.utils.to_array(aligned) # numpy array
stats = kalign.utils.alignment_stats(aligned) # dict with gap_fraction, conservation, identity
consensus = kalign.utils.consensus_sequence(aligned, threshold=0.7)
matrix = kalign.utils.pairwise_identity_matrix(aligned) # numpy array
trimmed = kalign.utils.remove_gap_columns(aligned)
region = kalign.utils.trim_alignment(aligned, start=2, end=10)
```
## Biopython Integration
Requires `pip install kalign-python[biopython]`.
```python
import kalign
# Return a Biopython MultipleSeqAlignment
aln = kalign.align(sequences, fmt="biopython", ids=["s1", "s2", "s3"])
print(aln.get_alignment_length())
# Write in various formats via Biopython
from Bio import AlignIO
AlignIO.write(aln, "output.clustal", "clustal")
```
### I/O helpers (`kalign.io`)
```python
sequences = kalign.io.read_fasta("input.fasta")
sequences, ids = kalign.io.read_sequences("input.fasta")
aligned = kalign.align(sequences)
kalign.io.write_fasta(aligned, "output.fasta", ids=ids)
kalign.io.write_clustal(aligned, "output.aln", ids=ids)
kalign.io.write_stockholm(aligned, "output.sto", ids=ids)
kalign.io.write_phylip(aligned, "output.phy", ids=ids)
```
## scikit-bio Integration
Requires `pip install kalign-python[skbio]`.
```python
import kalign
# Returns a TabularMSA of DNA, RNA, or Protein depending on seq_type
aln = kalign.align(sequences, seq_type="dna", fmt="skbio")
print(type(aln)) # <class 'skbio.alignment._tabular_msa.TabularMSA'>
```
## Constants
### Sequence Types
| String | Constant | Description |
|--------|----------|-------------|
| `"auto"` | `kalign.AUTO` | Auto-detect (default) |
| `"dna"` | `kalign.DNA` | DNA sequences |
| `"rna"` | `kalign.RNA` | RNA sequences |
| `"protein"` | `kalign.PROTEIN` | Protein sequences |
| `"divergent"` | `kalign.PROTEIN_DIVERGENT` | Divergent protein sequences |
| `"internal"` | `kalign.DNA_INTERNAL` | DNA with internal gap preference |
### Refinement Modes
| String | Constant | Description |
|--------|----------|-------------|
| `"none"` | `kalign.REFINE_NONE` | No refinement (default) |
| `"all"` | `kalign.REFINE_ALL` | Refine all columns |
| `"confident"` | `kalign.REFINE_CONFIDENT` | Refine only confident columns |
| `"inline"` | `kalign.REFINE_INLINE` | Inline refinement (disables parallelism) |
## Command-line Interface
```bash
# Modes
kalign-py -i sequences.fasta -o aligned.fasta # default mode
kalign-py --fast -i sequences.fasta -o aligned.fasta # fast mode
kalign-py --precise -i sequences.fasta -o aligned.fasta # precise mode
# I/O options
kalign-py -i sequences.fasta -o - --format clustal # stdout
cat input.fa | kalign-py -i - -o aligned.fasta # stdin
kalign-py -i sequences.fasta -o aligned.fasta --type protein # explicit type
# Ensemble with POAR save/load
kalign-py -i input.fa -o output.fa --ensemble 5 --save-poar consensus.poar
kalign-py -i input.fa -o output.fa --load-poar consensus.poar --min-support 3
kalign-py --version
```
## Development
```bash
git clone https://github.com/TimoLassmann/kalign.git
cd kalign
uv pip install -e .
uv run pytest tests/python/ -v
```
Requirements: Python 3.9+, CMake 3.18+, C++11 compiler, NumPy.
## Citation
If you use Kalign in your research, please cite:
> Lassmann, T. (2020). Kalign 3: multiple sequence alignment of large data sets.
> *Bioinformatics*, 36(6), 1928-1929.
> [doi:10.1093/bioinformatics/btz795](https://doi.org/10.1093/bioinformatics/btz795)
## License
Apache License, Version 2.0. See [COPYING](COPYING).
|