[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,61 +2,139 @@
id: wiki-2026-0508-bioinformatics-structure-predict
title: Bioinformatics Structure Prediction
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-SCI-BIOINFO]
aliases: [Protein Structure Prediction, AlphaFold, ESM]
duplicate_of: none
source_trust_level: A
confidence_score: 0.98
tags: [Bioinformatics, AlphaFold, DNA Sequencing, Protein Structure]
confidence_score: 0.9
verification_status: applied
tags: [bioinformatics, ml, protein, structure]
raw_sources: []
last_reinforced: 2026-04-20
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
last_reinforced: 2026-05-10
github_commit: applied
tech_stack:
language: Python
framework: AlphaFold3/ESM3/ColabFold
---
# [[Bioinformatics-Structure-Prediction|Bioinformatics-Structure-Prediction]] (바이오 인포매틱스와 구조 예측)
# Bioinformatics Structure Prediction
## 📌 한 줄 통찰 (The Karpathy Summary)
> 생명과학의 난제인 '단백질 접힘(Protein Folding)' 문제를 딥러닝(AlphaFold)으로 해결함으로써, 신약 개발과 질병 정복의 속도를 100배 이상 가속화했다.
## 한 줄
> **"매 sequence 에서 3D 구조까지 — 50년 grand challenge 가 2021 년 풀렸다."**. AlphaFold2 (2021) 가 CASP14 에서 experimental accuracy 달성, AlphaFold3 (2024) 가 protein-ligand-NA complex 까지 확장, ESM3 (2024) 가 generative protein design 시대를 열었다. 2026 의 표준: AF3 + ESMFold + RoseTTAFold All-Atom + ColabFold pipeline.
## 📖 구조화된 지식 (Synthesized Content)
- **DNA to Structure**:
- DNA 서열 정보에서 단백질의 3D 입체 구조를 예측하는 것은 생물학의 성배였다. 이 구조가 결정되어야 약물이 어디에 결합할지(Docking) 알 수 있기 때문이다.
- **AlphaFold (DeepMind)**:
- 트랜스포머 아키텍처를 바이오 데이터에 이식하여 수십 년 걸리던 구조 분석을 단 며칠로 단축했다. 2억 개 이상의 단백질 구조 데이터를 전 세계에 공개하여 과학적 혁명을 일으켰다.
- **Genome Sequencing**:
- 대량의 염기 서열 데이터를 고속으로 처리하고 통계적으로 분석하여 유전병의 원인을 찾아내는 머신러닝 분석 기법.
## 매 핵심
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- 정적인 구조 예측을 넘어, 이제는 단백질이 시간에 따라 어떻게 움직이는지(Dynamics)를 예측하는 것이 다음 과제다. 이는 항암제와 같은 정밀 의료의 핵심이 된다.
### 매 Method Lineage
- **Homology modeling** (1990s): MODELLER — known template 의존.
- **Threading / fold recognition** (2000s).
- **Ab initio physics** (Rosetta).
- **Coevolution + DL** (2018+): trRosetta, AlphaFold1.
- **Attention-based** (2021+): AlphaFold2 — Evoformer + Structure module.
- **All-atom diffusion** (2024+): AlphaFold3 — protein/DNA/RNA/ligand 통합.
- **Single-sequence (LLM)**: ESMFold, ESM3 — 매 MSA 없이 fast.
## 🔗 지식 연결 (Graph)
- Related: [[Digital Twins|Digital Twins]] , [[Deep-Learning|Deep-Learning]]-Basics
- Foundation: [[Information Theory|Information Theory]]
### 매 AlphaFold3 Capability (2024)
- 매 protein-protein, protein-NA, protein-ligand complex.
- 매 covalent modifications, ions.
- 매 diffusion-based all-atom output.
- 매 license: research-only via AF Server.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. **Drug discovery**: target-ligand docking, hit triage.
2. **Protein engineering**: enzyme design, antibody.
3. **Disease mechanism**: variant effect (missense3D, AlphaMissense).
4. **Structural biology**: cryo-EM model building.
5. **De novo design**: RFdiffusion + ProteinMPNN.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### ColabFold one-liner
```bash
# 매 fast MSA via MMseqs2 + AF2 inference
colabfold_batch input.fasta out_dir/ \
--num-recycle 3 --model-type alphafold2_multimer_v3
```
## 🧪 검증 상태 (Validation)
### ESMFold (single-sequence, no MSA)
```python
import torch
from transformers import EsmForProteinFolding
model = EsmForProteinFolding.from_pretrained("facebook/esmfold_v1").cuda().eval()
seq = "MKTAYIAKQRQISFVKSHFSRQLEERLGLIEVQAPILSRVGDGTQDNLSGAEKAVQVK"
with torch.no_grad():
out = model.infer_pdb(seq)
open("pred.pdb","w").write(out)
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### AlphaFold3 via API
```python
# 매 AF3 server (research) — JSON job spec
import requests
job = {
"name": "complex_001",
"modelSeeds": [42],
"sequences": [
{"protein": {"id":"A","sequence":"MKTA..."}},
{"ligand": {"id":"L","ccdCodes":["ATP"]}}
]
}
r = requests.post("https://alphafoldserver.com/api/job", json=job, headers=auth)
```
## 🧬 중복 검사 (Duplicate Check)
### RFdiffusion de novo binder design
```bash
# 매 design 80aa binder against target hotspot
python run_inference.py \
inference.output_prefix=binders/run \
contigmap.contigs="['A1-150,0 80-80']" \
ppi.hotspot_res="['A30','A33','A56']" \
inference.num_designs=100
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Confidence (pLDDT) filtering
```python
import numpy as np
# 매 pLDDT > 90 = very high; 70-90 = confident; 50-70 = low; <50 = disordered
plddt = np.array([atom.bfactor for atom in structure.get_atoms() if atom.name == "CA"])
mean_conf = plddt.mean()
disordered_frac = (plddt < 50).mean()
```
## 🕓 변경 이력 (Changelog)
## 매 결정 기준
| 상황 | Tool |
|---|---|
| Single protein, fast | ESMFold |
| Single protein, accurate | AlphaFold2 (ColabFold) |
| Multimer / complex | AlphaFold3 / AF-Multimer |
| Protein + ligand | AlphaFold3 / Boltz-1 |
| De novo design | RFdiffusion + ProteinMPNN |
| Variant effect | AlphaMissense |
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
**기본값**: 매 ColabFold AF2-multimer → AF3 for ligand/NA.
## 🔗 Graph
- 부모: [[Statistics & Data Analysis]]
- 변형: [[Anomaly-Detection]]
- 응용: [[Practical-Cryptography]]
- Adjacent: [[Inferential-Statistics]]
## 🤖 LLM 활용
**언제**: protein language model embedding, binder search, paper summary, mutation scan ranking.
**언제 X**: 매 final pose prediction — physics/structure model 이 specialized.
## ❌ 안티패턴
- **pLDDT 무시**: 매 low-confidence region 을 그대로 사용 — 매 disordered 일 수 있음.
- **Single seed**: 매 AF3 multi-seed sampling 권장 — diversity.
- **MSA 없이 large complex**: 매 ESMFold 는 single-chain 강점, multimer 약함.
- **License 위반**: 매 AF3 weights non-commercial — server API 만 허용.
## 🧪 검증 / 중복
- Verified: Jumper et al. 2021 Nature (AF2); Abramson et al. 2024 Nature (AF3); Lin et al. 2023 Science (ESM2).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — AF3/ESM3/RFdiffusion 2026 stack |