Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Analyze BCR repertoires for somatic hypermutation, clonal lineages, and B cell phylogenetics using the Immcantation framework. Use when studying B cell affinity maturation, germinal center dynamics, or antibody evolution.
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-tcr-bcr-analysis-immcantation-analysis
技能摘要
原始文档
Goal: Import AIRR-formatted repertoire data into the Immcantation framework for downstream analysis.
Approach: Read Change-O/AIRR tab-delimited files into R data frames with required V(D)J annotation columns.
library(alakazam)
library(shazam)
library(dplyr)
## Clonal Clustering
**Goal:** Group B cell sequences into clonal lineages based on junction sequence similarity.
**Approach:** Apply hierarchical clustering on nucleotide distance of junction regions with a threshold-based cutoff.
```r
library(scoper)
## Threshold typically 0.15-0.2 (15-20% nucleotide distance)
db <- hierarchicalClones(
db,
threshold = 0.15,
method = 'nt',
linkage = 'single'
)
相关技能
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences f…
Antibody design: epitope mapping, CDR engineering, bispecific construction.
End-to-end binder design using BindCraft hallucination. Use this skill when: (1) Designing protein binders with built-in…