Metadata-Version: 2.4
Name: otk-ecdna
Version: 1.1.0
Summary: ecDNA Analysis Toolkit - Deep learning-based extrachromosomal DNA prediction
Author: Your Name
Author-email: Shixiang Wang <wangshx@csu.edu.cn>
License: Non-Commercial Academic License
Project-URL: Homepage, https://github.com/WangLabCSU/otk
Project-URL: Documentation, https://github.com/WangLabCSU/otk#readme
Project-URL: Repository, https://github.com/WangLabCSU/otk.git
Project-URL: Issues, https://github.com/WangLabCSU/otk/issues
Project-URL: Paper, https://www.nature.com/articles/s41467-024-XXXX-X
Keywords: ecDNA,extrachromosomal DNA,deep learning,bioinformatics,cancer
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: License :: Free for non-commercial use
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=2.0
Requires-Dist: numpy>=1.24
Requires-Dist: scipy>=1.10
Requires-Dist: scikit-learn>=1.3
Requires-Dist: tqdm>=4.65
Requires-Dist: pyyaml>=6.0
Requires-Dist: click>=8.1
Requires-Dist: matplotlib>=3.7
Requires-Dist: seaborn>=0.12
Requires-Dist: adjustText>=0.8
Requires-Dist: torch>=2.0
Requires-Dist: xgboost>=2.0
Requires-Dist: fastapi>=0.104
Requires-Dist: uvicorn[standard]>=0.24
Requires-Dist: python-multipart>=0.0.6
Requires-Dist: pydantic>=2.5
Requires-Dist: jinja2>=3.1
Requires-Dist: markdown>=3.5
Requires-Dist: requests>=2.28
Provides-Extra: full
Requires-Dist: tabpfn>=2.0; extra == "full"
Requires-Dist: celery>=5.3; extra == "full"
Requires-Dist: redis>=5.0; extra == "full"
Requires-Dist: sqlalchemy>=2.0; extra == "full"
Requires-Dist: psutil>=5.9; extra == "full"
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: isort>=5.12; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Provides-Extra: docs
Requires-Dist: sphinx>=7.0; extra == "docs"
Requires-Dist: sphinx-rtd-theme>=2.0; extra == "docs"
Requires-Dist: myst-parser>=2.0; extra == "docs"
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# otk: ecDNA Analysis Toolkit

[![PyPI version](https://badge.fury.io/py/otk-ecdna.svg)](https://pypi.org/project/otk-ecdna/)
[![PyPI downloads](https://static.pepy.tech/badge/otk-ecdna)](https://pepy.tech/projects/otk-ecdna)
[![License](https://img.shields.io/badge/License-Academic%20Non--Commercial-blue.svg)](LICENSE)
[![Python](https://img.shields.io/badge/Python-3.9+-green.svg)](https://www.python.org/)

**otk** (ecDNA Analysis Toolkit) is a machine learning toolkit for predicting extrachromosomal DNA (ecDNA) cargo genes. It classifies genes at the gene level (ecDNA cargo vs. non-ecDNA) and identifies focal amplification types at the sample level (nofocal, noncircular, circular/ecDNA).

Based on the paper: Wang, S., et al. (2024). Machine learning-based extrachromosomal DNA identification in large-scale cohorts reveals its clinical implications in cancer. Nature Communications.

## Core Features

- Deep learning-based ecDNA cargo gene prediction at gene level
- Sample-level focal amplification type classification (nofocal/noncircular/circular)
- Multiple pre-trained models (XGBoost, Neural Networks, TabPFN)
- Efficient command-line interface for training and prediction
- GPU acceleration support
- Pre-trained models ready to use after pip install
- RESTful API for web service deployment
- Chinese mirror support for large model downloads

## Installation

### From PyPI (Recommended)

```bash
pip install otk-ecdna
```

This installs the `otk` CLI command and all pre-trained models (except TabPFN which is ~275MB and needs separate download).

### Download Large Models

The TabPFN model (~275MB) is hosted on GitHub Release:

```bash
# List available large models
otk download --list

# Download TabPFN model
otk download --model tabpfn
```

### From Source

```bash
git clone https://github.com/WangLabCSU/otk.git
cd otk/otk
pip install -e .
```

## Quick Start

```bash
# Check installation
otk --version

# List available models
otk models

# Run prediction (example)
otk predict --input data.csv --output predictions.csv --model xgb_new

# Start API server
otk api --port 8000
```

## CLI Commands

### Model Management

```bash
# List all available models with performance metrics
otk models

# Analyze a specific model
otk analyze --model xgb_new

# Generate model configuration
otk config generate --model xgb_new
```

### Training

```bash
# Train single model
otk train --model xgb_new --gpu 0

# Train neural network model
otk train --model transformer --gpu 0

# Train all models sequentially
otk train --all --gpu 0

# Train all models in parallel on multiple GPUs
otk train --all --parallel --gpus 0,1,2,3

# CPU-only training
otk train --model xgb_new --gpu -1
```

### Prediction

```bash
# Basic prediction
otk predict --input data.csv --output predictions.csv --model xgb_new

# With GPU acceleration
otk predict -i data.csv -o results/ -m transformer --gpu 0

# With custom threshold
otk predict -i data.csv -o predictions.csv -m xgb_new --threshold 0.5
```

### API Server

```bash
# Start API with default settings (base path /otk)
otk api

# Custom port
otk api --port 8080

# Serve at root (no base path)
otk api --base-path ""

# Development mode with auto-reload
otk api --reload

# Multiple workers
otk api --workers 4
```

### Model Download

```bash
# List large models requiring download
otk download --list

# Download TabPFN model
otk download --model tabpfn

# Force re-download
otk download --model tabpfn --force
```

## Data Format

### Input Data Format

Input data should be in CSV format.

**Minimal required columns:**

| Column | Description |
|--------|-------------|
| `sample` | Tumor sample ID |
| `gene_id` | Gene ID (e.g., ENSG00000284662) |
| `segVal` | Total gene copy number |

**Auto-filled columns (defaults applied if missing):**

| Column | Default | Description |
|--------|---------|-------------|
| `minor_cn` | 0 | Minor copy number |
| `intersect_ratio` | 1.0 | Segment-gene overlap ratio |
| `purity` | 0.8 | Tumor purity |
| `ploidy` | 2.0 | Genome ploidy |
| `AScore` | 10.0 | Aneuploidy score |
| `pLOH` | 0.1 | LOH proportion |
| `cna_burden` | 0.2 | CNA burden |
| `CN1-CN19` | 0.05 each | Copy number signatures |
| `type` | - | Cancer type → auto-converts to `type_*` columns |

**Automatically generated features (from gene_id matching):**

| Column | Description |
|--------|-------------|
| `freq_Linear` | Prior frequency in linear amplifications |
| `freq_BFB` | Prior frequency in BFB events |
| `freq_Circular` | Prior frequency in ecDNA |
| `freq_HR` | Prior frequency in HR events |

**Training data requires:**

| Column | Description |
|--------|-------------|
| `y` | Binary label (1=ecDNA cargo gene, 0=not) |

**Supported cancer types (24):**
BLCA, BRCA, CESC, COAD, DLBC, ESCA, GBM, HNSC, KICH, KIRC, KIRP, LGG, LIHC, LUAD, LUSC, OV, PRAD, READ, SARC, SKCM, STAD, THCA, UCEC, UVM

### Output Format

| Column | Description |
|--------|-------------|
| `sample` | Sample ID |
| `gene_id` | Gene ID |
| `prediction_prob` | Probability of ecDNA (0-1) |
| `prediction` | Binary classification (0/1) |
| `sample_level_prediction_label` | Sample type: nofocal/noncircular/circular |
| `sample_level_prediction` | Sample type code (0/1/2) |

Sample classification rules:
- `circular` (2): Any gene predicted as ecDNA cargo
- `noncircular` (1): No ecDNA but segVal > ploidy + 2
- `nofocal` (0): Otherwise

## Available Models

| Model | Type | Test auPRC | Description |
|-------|------|------------|-------------|
| xgb_new | XGBoost | 0.8339 | Optimized with feature engineering |
| tabpfn | TabPFN | 0.8323 | TabPFN ensemble (~275MB, needs download) |
| deep_residual | Neural | 0.8132 | Deep residual network |
| xgb_tuned | XGBoost | 0.8065 | Hyperparameter tuned |
| optimized_residual | Neural | 0.7906 | Optimized residual network |
| baseline_mlp | Neural | 0.7663 | Simple MLP baseline |
| dgit_super | Neural | 0.7662 | Deep gated interaction transformer |
| xgb_paper | XGBoost | 0.7138 | Paper reproduction (11 features) |
| transformer | Neural | 0.6875 | Transformer architecture |

All models use unified 80/10/10 data split with seed=2026 for reproducibility.

## API Service

Start a RESTful API for web-based prediction:

```bash
# Start API (default base path /otk)
otk api

# Access points:
# - API docs: http://localhost:8000/otk/docs
# - Health: http://localhost:8000/otk/health
# - Web UI: http://localhost:8000/otk/
```

See [otk_api/README.md](otk_api/README.md) for full API documentation.

## Project Structure

```
otk/
├── src/otk/           # Core library
│   ├── data/          # Data handling
│   ├── models/        # Model implementations
│   ├── predict/       # Prediction utilities
│   └── cli.py         # Command-line interface
├── otk_api/           # FastAPI web service
│   ├── api/           # API implementation
│   ├── models/        # Pre-trained models
│   └── static/        # Performance charts
├── configs/           # Model configurations
└── tests/             # Unit tests
```

## Citation

If you use otk in your research, please cite:

```bibtex
Wang, S., et al. (2024). Machine learning-based extrachromosomal DNA 
identification in large-scale cohorts reveals its clinical implications 
in cancer. Nature Communications.
```

## License

This software and associated documentation files (the "Software") are protected by copyright. This Software is provided "as is" (at your own risk) for internal non-commercial academic research purposes only. Please read the [Non-Commercial Academic License](LICENSE) in detail before downloading a copy. By installing or using this Software, you agree to be bound by the terms and conditions of the Non-Commercial Academic License.

All commercial use of the Software or any modification, manipulation or derivative of the Software, including but not limited to transfer, sale or licence to a commercial third party or use on behalf of a commercial third party (including but not limited to use as part of a service supplied to any third party for financial reward) is strictly prohibited and requires a commercial use licence.

### Patent Protection

**This software is protected by the P. R. China patent [202211067952.6](https://www.patentguru.com/cn/search?q=202211067952.6).** The following intellectual property is protected under patent law and is NOT covered by the academic non-commercial license — a separate commercial license is required for any use beyond personal academic research:

- **Software design and architecture**: the overall software architecture design, including the command-line interface (CLI) tool, FastAPI-based prediction service, model management system, configuration generation system, unified data split mechanism, data preprocessing pipeline, training orchestration framework, and prediction utilities.
- **Modeling methods**: all machine learning and deep learning pipelines for gene-level ecDNA cargo gene prediction and sample-level focal amplification (fCNA) classification, including feature engineering strategies, and all model architectures (XGBoost variants, Transformer, TabPFN ensemble, Deep Residual Networks, Optimized Residual Networks, Deep Gated Interaction Transformer, and MLP baseline models).
- **Modeling features and approaches**: derived genomic features, copy number variation metrics (segment values, minor copy number, purity, ploidy, AScore, pLOH, CNA burden, intersect ratio), copy number signatures (CN1-CN19), cancer type encoding, and all computational extraction and transformation methods thereof.
- **Model construction**: all model architectures, training methodologies, hyperparameter configurations, ensemble strategies, custom loss functions, optimization protocols, and model selection procedures.
- **Model files**: all pre-trained model objects, serialized model binaries (.pkl, .pth), model parameters, model weights, training summaries, configuration files, and any derivative works thereof.

For further information or to obtain a commercial license, please email <wangshx@csu.edu.cn> or <zhaoqi@sysucc.org.cn>.

## Contact

- **Homepage**: https://github.com/WangLabCSU/otk
- **PyPI**: https://pypi.org/project/otk-ecdna/
- **Email**: wangshx@csu.edu.cn
