Loading...
Loading...
Compare original and translation side by side
undefinedundefinedundefinedundefined| Term | Description |
|---|---|
| UniProt Accession | Protein identifier (e.g., |
| AlphaFold ID | Format: |
| pLDDT | Per-residue confidence (0-100); >90 = reliable, <50 = disordered |
| PAE | Predicted Aligned Error; <5A = high confidence domain positions |
references/confidence-scores.md| 术语 | 描述 |
|---|---|
| UniProt Accession | 用于查询的蛋白质标识符(例如: |
| AlphaFold ID | 格式: |
| pLDDT | 每个残基的置信度(0-100);>90表示可靠,<50表示无序 |
| PAE | 预测对齐误差;<5Å表示结构域位置的置信度高 |
references/confidence-scores.md| File | URL Pattern | Contents |
|---|---|---|
| Coordinates | | Atomic positions (mmCIF) |
| Confidence | | Per-residue pLDDT array |
| PAE Matrix | | Inter-residue error |
https://alphafold.ebi.ac.uk/files/| 文件类型 | URL格式 | 内容 |
|---|---|---|
| 坐标文件 | | 原子位置(mmCIF格式) |
| 置信度文件 | | 每个残基的pLDDT数组 |
| PAE矩阵文件 | | 残基间误差 |
https://alphafold.ebi.ac.uk/files/import requests
resp = requests.get(f"https://alphafold.ebi.ac.uk/api/prediction/{uniprot_id}")
metadata = resp.json()[0]
af_id = metadata['entryId']import requests
resp = requests.get(f"https://alphafold.ebi.ac.uk/api/prediction/{uniprot_id}")
metadata = resp.json()[0]
af_id = metadata['entryId']scripts/alphafold_utils.pyfrom scripts.alphafold_utils import download_alphafold_files
paths = download_alphafold_files("AF-P04637-F1", output_dir="./data")scripts/alphafold_utils.pyfrom scripts.alphafold_utils import download_alphafold_files
paths = download_alphafold_files("AF-P04637-F1", output_dir="./data")from scripts.alphafold_utils import get_plddt_scores
stats = get_plddt_scores("AF-P04637-F1")
print(f"Average pLDDT: {stats['mean']:.1f}")from scripts.alphafold_utils import get_plddt_scores
stats = get_plddt_scores("AF-P04637-F1")
print(f"Average pLDDT: {stats['mean']:.1f}")undefinedundefined
See `references/bulk-access.md` for BigQuery queries and batch processing.
请参阅`references/bulk-access.md`获取BigQuery查询和批量处理相关内容。pip install biopython requests numpy matplotlib pandas scipypip install biopython requests numpy matplotlib pandas scipyundefinedundefined