Metadata-Version: 2.4
Name: haplokit
Version: 0.1.9
Summary: CLI haplotype viewer with C++ backend and Python plotting
Author: WWz33
License-Expression: GPL-3.0-or-later
Project-URL: Homepage, https://github.com/WWz33/haplokit
Project-URL: Repository, https://github.com/WWz33/haplokit
Project-URL: Issues, https://github.com/WWz33/haplokit/issues
Keywords: haplotype,vcf,genomics,bioinformatics,visualization
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: C++
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib>=3.8
Requires-Dist: scipy>=1.11
Provides-Extra: test
Requires-Dist: pytest>=8; extra == "test"
Requires-Dist: pysam>=0.23; extra == "test"
Dynamic: license-file

# haplokit

CLI haplotype viewer with C++ backend, phenotype statistics, and Python plotting.

<!-- README-I18N:START -->

**English** | [汉语](./README.zh-CN.md)

<!-- README-I18N:END -->

## Installation

```bash
pip install haplokit
```

> Source build requires Linux/WSL, Python 3.10+, C++17 toolchain, CMake 3.22+, make, and native link dependencies for vendored htslib. See [Contributing](#contributing).

Native dependency examples:

Conda/mamba:

```bash
mamba install -c conda-forge compilers make cmake libcurl zlib bzip2 xz
python -m pip install --no-cache-dir haplokit
```

If you use the system compiler inside a conda environment, expose conda's native
headers and libraries before building:

```bash
export CPATH="$CONDA_PREFIX/include:$CPATH"
export LIBRARY_PATH="$CONDA_PREFIX/lib:$LIBRARY_PATH"
export LD_LIBRARY_PATH="$CONDA_PREFIX/lib:$LD_LIBRARY_PATH"
export CMAKE_PREFIX_PATH="$CONDA_PREFIX:$CMAKE_PREFIX_PATH"
python -m pip install --no-cache-dir haplokit
```

Ubuntu/Debian:

```bash
sudo apt-get update
sudo apt-get install -y build-essential make cmake zlib1g-dev libbz2-dev liblzma-dev libcurl4-openssl-dev
python -m pip install --no-cache-dir haplokit
```

Common linker errors map directly to the missing native package:

- `cannot find -lcurl`: install `libcurl`
- `cannot find -lbz2`: install `bzip2` / `libbz2-dev`
- `cannot find -llzma`: install `xz` / `liblzma-dev`
- `cannot find -lz`: install `zlib` / `zlib1g-dev`

If an installed backend fails at runtime with a message like
`libbz2.so.1.0: cannot open shared object file`, upgrade to `haplokit>=0.1.5`.
For older installs, this environment export fixes the runtime loader path:

```bash
export LD_LIBRARY_PATH="$CONDA_PREFIX/lib:$LD_LIBRARY_PATH"
```

From a git clone:

```bash
pip install .
```

For editable development installs, the PEP 660 editable wheel hook builds the C++ backend into the source tree:

```bash
pip install -e .
```

If the backend is built elsewhere, point the CLI at it explicitly:

```bash
export HAPLOKIT_CPP_BIN=/path/to/haplokit_cpp
```

## Quick Start

```bash
haplokit view data/var.sorted.vcf.gz -r scaffold_1:4300-5000 --output-file out
```

Output:

- `out/hapresult.tsv` — per-sample haplotype detail
- `out/hap_summary.tsv` — haplotype count summary

## Usage Scenarios

### 1. Region query — strict haplotype grouping

Identify all distinct haplotypes in a genomic region.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 --output-file out
```

Produces `hapresult.tsv` + `hap_summary.tsv` in `out/`. Each haplotype row shows the exact allele pattern; samples with any heterozygous or missing call are excluded.

### 2. Single-site query

Analyze haplotype at one variant position.

```bash
haplokit view in.vcf.gz -r chr1:1450 --output-file out_site
```

`--by` auto-resolves to `site` for `chr:pos` selectors.

### 3. Gene annotation + figure

Overlay gene structure on the haplotype table.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 --gff genes.gff3 --plot --output-file out
```

`genes.gff3` format (standard GFF3):

```text
chr1	.	gene	1000	3000	.	+	.	ID=gene1;Name=GeneA
chr1	.	CDS	1200	1500	.	+	0	ID=cds1;Parent=gene1
```

Adds SnpEff-style functional category strip (CDS, UTR, exon, intron, intergenic) above variant positions. Writes figure (`out/*.png`) + `gff_ann_summary.tsv`.

<img src="data/figure/haplotype_table.png" alt="Haplotype summary table" width="800">

Figure components:

- **Title**: region + overlapping gene name (when `--gff` provided)
- **Function strip** (`--gff` only): colored bar classifying each variant by functional category
- **POS / ALLELE rows**: variant positions and alternate alleles
- **Haplotype rows** (H001, H002, ...): allele per position; empty = reference
- **Population columns** (`--population`): sample counts per haplotype per group
- **n/N**: haplotype frequency
- **Legend** (`--gff` only): functional category colors
- **Indel footnotes**: multi-allele indels annotated with superscript markers

### 4. Population grouping

Compare haplotype distributions across populations.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 -p popgroup.txt --plot --output-file out
```

`popgroup.txt` (tab-separated: `sample<TAB>population`):

```text
C1	wild
C2	wild
C13	landrace
```

Adds population columns to the table and figure.

### 5. Geographic distribution map

Map haplotype composition at sampling locations.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 -p popgroup.txt --geo data/sample_china_geo.txt --plot --output-file out
```

`sample_china_geo.txt` and `sample_world_geo.txt` are tab-separated coordinate examples (`ID<TAB>longitude<TAB>latitude<TAB>Hap`). The `Hap` column is included for standalone plotting examples; CLI map plotting derives each sample's haplotype from the VCF result.
Use `--show-counts` to draw sample-count labels at map pie centers, or `--hide-counts` to keep them hidden explicitly.

```text
ID	longitude	latitude	Hap
C1	116.40	39.90	H001
C2	116.40	39.90	H002
C3	116.40	39.90	H001
```

<img src="data/figure/haplotype_map_china.png" alt="Haplotype geographic distribution" width="600">

World example resources are included under `data/`:

- `sample_world_geo.txt` keeps the same `ID/Hap` composition as `sample_china_geo.txt`, but replaces coordinates with global sampling locations.
- `world_countries.shp`, `world_countries.shx`, and `world_countries.dbf` provide the example world map shapefile.
- `haplotype_map_world.png` is the generated world map example under `data/figure/`.

<img src="data/figure/haplotype_map_world.png" alt="World haplotype geographic distribution" width="600">

Figure components:

- **Pie charts**: haplotype composition per location; size ∝ √(sample count)
- **Color legend**: haplotype color key
- **Bubble-size legend**: ggplot2-style graduated circles, showing the sample-count scale
- **Base map**: GeoJSON province boundaries (China) or the bundled world shapefile example

### 6. Haplotype network — popart-style

Build a haplotype network and visualize it in the conventions of [popart](https://popart.maths.otago.ac.nz/) (Leigh & Bryant 2015). Supports three inference methods: TCS (Clement et al. 2002), MSN and MJN (Bandelt, Forster & Röhl 1999).

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 -p popgroup.txt --network --plot --output-file out
haplokit view in.vcf.gz -r chr1:1000-2000 --network --network-method mjn --plot --output-file out
```

Figure components:

- **Nodes**: one circle per haplotype; area ∝ √(sample count)
- **Pie slices** (with `-p`): population composition per haplotype
- **Edges**: ideal length proportional to mutation distance (force-directed layout)
- **Hatch marks across edges**: one tick per mutation (popart convention)
- **Small black dots**: inferred median (intermediate) vertices, where TCS infers ancestors

![Network algorithms comparison — MSN / TCS / MJN](data/figure/haplotype_network_algorithms.png)

### 7. Phenotype statistics module

`haplokit phenotype` joins haplotype assignments with sample phenotype tables. It accepts the
`hapresult.tsv` written by `haplokit view` or a simple two-column table named like
`samples,haplotypes`. Phenotype tables use the first column as sample ID and the remaining
columns as numeric traits. The module keeps numeric testing in the backend data layer and uses
the plotting layer only for visualization.

```bash
haplokit phenotype \
  --hapresult out/hapresult.tsv \
  --phenotypes phenotype.csv \
  --population popgroup.txt \
  --trait yield \
  --min-hap-size 5 \
  --method welch \
  --output yield_stats.tsv \
  --summary-output yield_summary.tsv

haplokit phenotype \
  --hapresult out/hapresult.tsv \
  --phenotypes phenotype.csv \
  --population popgroup.txt \
  --trait yield \
  --min-hap-size 5 \
  --method welch \
  --output yield_stats.tsv \
  --plot-box \
  --comparison Hap01,Hap02 \
  --figsize 7,4 \
  --plot-format pdf \
  --box-output yield_box.pdf
```

The phenotype statistics workflow runs one-way ANOVA per trait and pairwise haplotype tests.
Pairwise methods are explicitly selectable with `--method`: `welch` (default), `student`,
`mannwhitney`, and `tukey`; p-values are Bonferroni-adjusted by default for non-Tukey tests.
Haplotype groups with fewer than `--min-hap-size` numeric observations are excluded per trait.
When `--population/--pop-group` is provided, tests are run separately inside each population
group and the output includes a `population` column. Missing phenotype values (`NA`, `NaN`,
`null`, `.`, or empty cells) are ignored per trait, and the `effective_n` column reports how
many non-missing samples entered each test stratum.

`--plot-box` adds the box figure as a visualization of the same phenotype statistics and
grouping logic. It uses the same haplotype filtering, population strata, and comparison rules,
then renders one trait as a publication-oriented boxplot. With `--population`, boxes are grouped
by population with haplotypes shown side by side. Star annotations are drawn inside the plot for
within-population haplotype comparisons and between-population comparisons of the same haplotype;
single-haplotype plots show only between-population comparisons.

Population-stratified example inputs are bundled in `data/example_phenotype_haplotypes.tsv`,
`data/example_phenotype.csv`, and `data/popgroup.txt`:

```bash
haplokit phenotype \
  -H data/example_phenotype_haplotypes.tsv \
  -P data/example_phenotype.csv \
  -p data/popgroup.txt \
  -t yield \
  -m 4 \
  --plot-box \
  -F png \
  -T "Yield by haplotype and population" \
  -b data/figure/phenotype_population_boxplot.png
```

<img src="data/figure/phenotype_population_boxplot.png" alt="Population-stratified phenotype boxplot" width="900">

### 8. BED batch processing

Process multiple regions in one run.

```bash
haplokit view in.vcf.gz -R regions.bed --output-file out_batch
```

`regions.bed` (≥3 tab-separated columns):

```text
chr1	1000	2000
chr2	5000	6000
```

Each BED row is processed independently. Output files are suffixed by region slug (`_chr1_1000_2000`).

### 9. Approximate grouping

Cluster similar haplotypes within a tolerance.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 --max-diff 0.2 --output-file out
```

`--max-diff` (0–1): haplotypes differing at ≤ 20% of positions merge into one group. Grouping mode changes from `strict-region` to `approx-region`.

### 10. Sample subset + imputation

Restrict analysis to specific samples; fill missing calls as reference.

```bash
haplokit view in.vcf.gz -r chr1:1000-2000 -S samples.list --impute --output-file out
```

`samples.list` (one sample ID per line):

```text
C1
C5
C16
```

`--impute` treats missing GT as `0/0`, increasing sample retention.

## Output Files

### `hapresult.tsv` — per-sample haplotype detail

```text
CHR     scaffold_1  scaffold_1  ...  Haplotypes:  8
POS     4300        4345        ...  Individuals: 37
INFO    .           .           ...  Variants:    5
ALLELE  G/C         T/A,GG      ...  Accession
H001    G           T           ...  C8;C9;C11;C14;C18;C25;C26;C28;C31;C35
```

- **Header rows** (CHR/POS/INFO/ALLELE): variant metadata across columns
- **Haplotype rows** (H001–HNNN): allele at each position; empty = reference; list of samples carrying this haplotype

### `hap_summary.tsv` — haplotype count summary

Same header as `hapresult.tsv`, plus a `freq` column (count/total):

```text
H001  G   T   T   GCCTA  T   10
H002  G   T   T   A      T   8
H003  C   T   T   A      T   8
```

### `gff_ann_summary.tsv` — gene annotation (`--gff` only)

```text
chr           start  end   ann
scaffold_1    4300   5000  test1G0387
```

### Figure files (`--plot`)

Format set by `--plot-format` (default `png`). Named per region slug: `<prefix>.<chr>_<start>_<end>.png`.

## Full Parameters

### `haplokit view`

```
haplokit view [input_vcf] (-r <region> | -R <regions.bed> | --gene-id <id> | --gene-list <file>) [options]
```

`<input_vcf>` must be an indexed VCF/BCF (`.vcf.gz` + `.tbi`, or BCF index).

| Option | Type | Default | Description |
| --- | --- | --- | --- |
| `input_vcf` | path | — | Indexed VCF/BCF input path |
| `-r, --region` | string | — | `chr:start-end` or `chr:pos` |
| `-R, --regions-file` | path | — | BED file (≥3 tab-separated columns) |
| `-G, --gene-id` | string | — | Resolve one gene ID through `--gff/--gff3` |
| `-l, --gene-list` | path | — | File with one gene ID per line; requires `--gff/--gff3` |
| `-S, --samples-file` | path | — | One sample ID per line |
| `-b, --by` | `auto\|region\|site` | `auto` | Grouping mode; auto infers from selector shape |
| `-i, --impute` | flag | off | Impute missing GT as reference |
| `-m, --max-diff` | float [0,1] | — | Approximate grouping threshold |
| `-g, --gff3, --gff` | path | — | GFF3/GTF for gene selectors and plots |
| `-u, --upstream` | integer | `0` | Upstream bases added to gene selectors |
| `-d, --downstream` | integer | `0` | Downstream bases added to gene selectors |
| `-a, --strand-aware` | flag | off | Apply upstream/downstream relative to gene strand |
| `-o, --output` | `summary\|detail` | `summary` | JSONL mode only; TSV always writes both |
| `-f, --output-format` | `tsv\|jsonl` | `tsv` | Output format |
| `-O, --output-file` | path | — | Output directory, prefix, or JSONL file |
| `-P, --plot` | flag | off | Generate haplotype table figure |
| `-F, --plot-format` | `png\|pdf\|svg\|tiff` | `png` | Figure format |
| `-z, --figsize` | `WIDTH,HEIGHT` | auto | Figure size in inches for table and map plots |
| `-p, --population` | path | — | Tab-separated sample → population map |
| `-e, --geo` | path | — | Sample geographic coordinates for map |
| `-C, --map-facecolor` | color | `#f5f5f0` | Geographic map background color |
| `--show-counts` / `--hide-counts` | flag | hidden | Show or hide sample-count labels at map pie centers |
| `-n, --network` | flag | off | Render haplotype network (popart-style) |
| `-N, --network-method` | `tcs`/`msn`/`mjn` | `tcs` | Network inference algorithm |
| `-H, --hap-prefix` | string | `Hap` | Haplotype label prefix |
| `-D, --hap-pad` | integer | `2` | Zero-padding width for haplotype labels |

Selector rules: exactly one of `-r`, `-R`, `--gene-id`, or `--gene-list` is required. Gene
selectors require `--gff/--gff3`; `--upstream`, `--downstream`, and `--strand-aware` are only
valid with gene selectors. `--by site` is only valid with `-r chr:pos`.

### `haplokit phenotype`

```
haplokit phenotype -H <hapresult.tsv> -P <phenotype.csv> [options]
```

| Option | Type | Default | Description |
| --- | --- | --- | --- |
| `-H, --hapresult, --haplotypes` | path | required | `hapresult.tsv` or two-column sample-haplotype table |
| `-P, --phenotypes, --phenotype, --pheno-file` | path | required | Phenotype table; first column is sample ID, remaining columns are traits |
| `-p, --population, --pop-group` | path | — | Sample-to-population table; tests and boxplots are stratified by population |
| `-t, --trait` | string | all numeric traits | Trait to analyze; repeat to select multiple traits |
| `-m, --min-hap-size` | integer | `5` | Minimum numeric samples per haplotype within each test stratum |
| `-M, --method` | `welch\|student\|mannwhitney\|tukey` | `welch` | Explicit pairwise test formula/method |
| `-a, --adjust` | `bonferroni\|none` | `bonferroni` | P-value adjustment for non-Tukey pairwise tests |
| `-o, --output` | path | `phenotype_stats.tsv` | Output TSV for pairwise statistics |
| `-s, --summary-output` | path | — | Optional per-haplotype summary statistics TSV |
| `-B, --plot-box` | flag | off | Also render a phenotype boxplot for the selected trait |
| `-b, --box-output` | path | `phenotype_box.png` | Output path for `--plot-box` |
| `-F, --plot-format` | `png\|pdf\|svg\|tiff` | output suffix | Boxplot format |
| `-z, --figsize` | `WIDTH,HEIGHT` | auto | Boxplot figure size in inches |
| `-T, --title` | string | — | Boxplot title |
| `-c, --comparison` | `HapA,HapB` | — | Haplotype pair to annotate in `--plot-box`; repeat for multiple pairs |
| `-d, --delimiter` | `auto\|tab\|comma` | `auto` | Delimiter for hapresult/sample-haplotype input |
| `-D, --phenotype-delimiter` | `auto\|tab\|comma` | `auto` | Delimiter for phenotype input |
| `-G, --population-delimiter` | `auto\|tab\|comma` | `auto` | Delimiter for population input |

`--plot-box` requires exactly one selected trait. If the phenotype table has multiple numeric
traits, pass `--trait` to choose the one to draw.

## Backend

C++ backend (`haplokit_cpp`) handles VCF reading and haplotype grouping. Discovery order:

1. `HAPLOKIT_CPP_BIN` env var
2. Packaged binary: `haplokit/_bin/haplokit_cpp`
3. Repo build: `build-wsl/haplokit_cpp` → `build/haplokit_cpp` → `build-haplokit-python/haplokit_cpp`
4. Fallback: auto-run `cmake` build from the source tree and report the CMake error if it fails

Vendored libraries:

- **[htslib](https://github.com/samtools/htslib)** — VCF/BCF reading with indexed random access
- **[gffsub](https://github.com/WWz33/gffsub)** — GFF3/GTF parsing with overlap/nearest-gene queries

### Network Algorithms

C++ implementation of haplotype network algorithms (MSN, TCS, MJN) with SIMD acceleration:

- **Library**: `libhaplokit_network.a` (1.7 MB, C++17)
- **Algorithms**: MSN (Minimum Spanning Network), TCS (Statistical Parsimony), MJN (Median-Joining)
- **Optimizations**: AVX2 SIMD Hamming distance, OpenMP parallelization, O(1) edge deletion
- **Status**: Core C++ library compiled and tested ✓
- **Python Interface**: `haplokit.network` with automatic C++/Python fallback
- **Visualization**: PopART-style rendering with pie chart nodes, hatch marks, trait legends

Reference implementation (pure Python) archived in `archive/python_reference_implementation/` for algorithm verification.

Performance (100 haplotypes, 1000bp):
- MSN: ~10ms (C++) vs ~1s (Python)
- TCS: ~20ms (C++) vs ~2s (Python)
- MJN: ~50ms (C++) vs ~5s (Python)

## Contributing

```bash
cmake -S . -B build-wsl && cmake --build build-wsl -j12
HAPLOKIT_CPP_BIN=$PWD/build-wsl/haplokit_cpp python -m pytest -q tests/python
ctest --test-dir build-wsl --output-on-failure
```

## Acknowledgements

Inspired by geneHapR:

> Zhang, R., Jia, G. & Diao, X. geneHapR: an R package for gene haplotypic statistics and visualization. BMC Bioinformatics 24, 199 (2023). https://doi.org/10.1186/s12859-023-05318-9

Network visualization follows the conventions of [popart](https://popart.maths.otago.ac.nz/):

> Leigh, J. W. & Bryant, D. popart: full‐feature software for haplotype network construction. Methods in Ecology and Evolution 6, 1110–1116 (2015). https://doi.org/10.1111/2041-210X.12410

## License

GPL-3.0-or-later
