CLI for MERGE variant pathogenicity prediction
Project description
MERGE CLI
MERGE 变异致病性预测命令行工具。所有计算在服务器端完成,本地只需 Python 3.9+。
安装
pip install merge-cli
快速开始
# 1. 配置服务器地址(只需配置一次)
merge config set-url https://your-server.com
merge config set-token YOUR_API_TOKEN
# 2. 单变异预测
merge predict --chrom chr17 --pos 43092919 --ref A --alt G
# 3. 批量预测(上传 VCF,结果发邮件)
merge batch my_variants.vcf --email you@example.com
命令详解
merge predict — 单变异预测
选项:
--chrom 染色体(chr17 或 17 均可) [必填]
--pos 变异位置(1-based) [必填]
--ref 参考碱基 [必填]
--alt 突变碱基 [必填]
--genome hg38 / hg19 [默认: hg38]
--format table / json / tsv [默认: table]
--no-ensemble 跳过 MERGE 集成打分
--no-alphagenome / --no-hyenadna / --no-nt
--no-alphamissense / --no-esm1b / --no-gpn-msa
--no-popeve / --no-evo2 / --no-evo1
输出示例(table 模式):
╭──────────────────────────────────────────╮
│ MERGE 预测结果 │
├──────────────────┬───────────────────────┤
│ 变异位点 │ chr17:43092919 A → G │
│ 基因 / 转录本 │ BRCA1 / ENST00000357654│
├──────────────────┼───────────────────────┤
│ MERGE 致病性 │ 87.3% Likely Pathogenic│
│ 使用模型 │ ClinVar │
├──────────────────┼───────────────────────┤
│ AlphaMissense │ 0.9341 │
│ ESM1b │ -3.2180 │
│ GPN-MSA │ -1.4420 │
│ popEVE │ 0.8812 │
│ AlphaGenome │ 0.0234 │
│ HyenaDNA │ -2.1100 │
│ NT │ -1.8830 │
│ Evo2 LLR │ -4.2210 │
│ Evo1 Delta │ -3.9910 │
╰──────────────────┴───────────────────────╯
管道输出(TSV 模式,方便写脚本):
merge predict --chrom chr17 --pos 43092919 --ref A --alt G --format tsv >> results.tsv
脚本批量调用单变异(小于 20 个时比上传 VCF 更快):
while IFS=$'\t' read -r chrom pos ref alt; do
merge predict --chrom "$chrom" --pos "$pos" --ref "$ref" --alt "$alt" --format tsv
done < variants.tsv >> results.tsv
merge batch — 批量 VCF 预测
merge batch variants.vcf --email you@example.com
merge batch variants.vcf.gz --email you@example.com --genome hg19 --no-evo2
任务提交成功后返回 Job ID,结果通过邮件发送,附件包含:
batch_predictions.csv— 所有模型分数汇总(可直接用 Excel 打开)batch_predictions.vcf— 标准 VCF 格式,含 MERGE 及各模型分数imputation_details.csv— MERGE 各特征缺失填补情况
服务端限制:每 IP 每日 5 次,同一邮箱间隔 1 小时,单次最多 2000 个变异。
merge status — 查询批量任务
merge status A3F2C1B0 # 查看一次
merge status A3F2C1B0 --watch # 每 30 秒轮询
环境变量(适合 CI / 服务器环境)
export MERGE_API_URL=https://your-server.com
export MERGE_API_TOKEN=your-token
merge predict --chrom chr1 --pos 100000 --ref C --alt T
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
merge_cli-1.0.0.tar.gz
(12.0 kB
view details)
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
merge_cli-1.0.0-py3-none-any.whl
(12.9 kB
view details)
File details
Details for the file merge_cli-1.0.0.tar.gz.
File metadata
- Download URL: merge_cli-1.0.0.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9f0cb0dca14facfb0495d0d4f6c69eec56a2e9169d811c09c6bd3ea9f204e309
|
|
| MD5 |
607ce17e21799483e6e0c5485b495308
|
|
| BLAKE2b-256 |
fe334561fbc6a49513ec2a9c76f28959efe1e6268ec8be9d2c73063656e62f8b
|
File details
Details for the file merge_cli-1.0.0-py3-none-any.whl.
File metadata
- Download URL: merge_cli-1.0.0-py3-none-any.whl
- Upload date:
- Size: 12.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aa0d043c68f4bd076d32cd9953624647fd06f1189b4f6f9dc13c47853c6118f1
|
|
| MD5 |
2547edd9edf8f0d6e6608c31425cc0ed
|
|
| BLAKE2b-256 |
8383c704f634c8d4177062ba0cc2428b066dec46edf05265c75e7959eaaa3e9b
|