AG
数据与复现
agent-browser
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extr…
FreedomIntelligence/OpenClaw-Medical-Skills查看
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Neoantigen prediction: somatic variants → MHC binding → immunogenicity.
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-workflows-neoantigen-pipeline
技能摘要
原始文档
HLA types are critical for MHC binding prediction. If not already known from clinical testing:
## Parse results
cat hla_output/tumor.genotype.json
python
import json
with open('hla_output/tumor.genotype.json') as f:
hla_data = json.load(f)
hla_alleles = []
for gene, alleles in hla_data.items():
for allele in alleles:
hla_alleles.append(f'HLA-{allele}')
## Format for pVACseq: HLA-A*02:01,HLA-A*24:02,HLA-B*07:02,...
hla_string = ','.join(hla_alleles)
print(f'HLA alleles: {hla_string}')
相关技能
Browse the web for any task — research topics, read articles, interact with web apps, fill forms, take screenshots, extr…
Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ t…
Filter alignments by flag, quality, region, or paired status.
Index BAM/CRAM files with samtools index for random access.