Design armored CAR-T cells with cytokine payloads and resistance mechanisms.
bio-clinical-databases-somatic-signatures
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Extract and analyze mutational signatures from somatic variants using SigProfiler or MutationalPatterns to characterize mutagenic processes. Use when identifying DNA damage mechanisms or etiology in cancer genomes.
原始来源
FreedomIntelligence/OpenClaw-Medical-Skills
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-clinical-databases-somatic-signatures
- 维护者
- FreedomIntelligence
- 许可
- MIT
- 最近更新
- 2026年4月1日
技能摘要
来自 SKILL.md 的关键信息
核心说明
- Python:SigProfilerExtractor.sigpro() ,用于 de novo signature extraction。
- R:MutationalPatterns::fit_to_signatures() ,用于 fitting to COSMIC signatures。
- 提取 mutational signatures ,面向 my tumor samples" → Decompose somatic mutation catalogs into mutational signatures (SBS,DBS,ID) to identify DNA damage mechanisms 、 mutagenic processes in cancer genomes. Python:SigProfilerExtractor.sigpro() ,用于 de novo signature extraction R:MutationalPatterns::fit_to_signatures() ,用于 fitting to COSMIC signatures。
- genInstall.install('GRCh38')。
原始文档
SKILL.md 摘录
SigProfiler Workflow
Goal: Extract de novo mutational signatures and decompose to COSMIC reference signatures from somatic VCFs.
Approach: Generate a 96-trinucleotide-context mutation matrix with SigProfilerMatrixGenerator, extract signatures via NMF with SigProfilerExtractor, and fit to COSMIC with SigProfilerAssignment.
Install and Generate Matrix
from SigProfilerMatrixGenerator import install as genInstall
from SigProfilerMatrixGenerator.scripts import SigProfilerMatrixGeneratorFunc as matGen
## Output: SBS96 matrix (96 trinucleotide contexts)
matrices = matGen.SigProfilerMatrixGeneratorFunc(
project='my_project',
genome='GRCh38',
vcfFiles='/path/to/vcf_directory',
plot=True,
exome=False # Set True for WES
)
适用场景
- 适合在identifying DNA damage mechanisms 或 etiology in cancer genomes时使用。
不适用场景
- Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。
上游相关技能
- clinical-databases/tumor-mutational-burden - TMB calculation
- variant-calling/somatic-variant-calling - Input variants
- data-visualization/heatmaps-clustering - Signature visualization
相关技能
相关技能
arxiv-search
Search arXiv physics, math, and computer science preprints using natural language queries. Powered by Valyu semantic sea…
Autonomous oncology research agent: literature mining, trial matching, biomarker analysis, and treatment hypothesis gene…
Preprocesses cell-free DNA sequencing data including adapter trimming, alignment optimized for short fragments, and UMI-…