bio-methylation-methylkit
Installation
SKILL.md
Version Compatibility
Reference examples tested with: Bismark 0.24+, methylKit 1.28+
Before using code patterns, verify installed versions match. If versions differ:
- R:
packageVersion('<pkg>')then?function_nameto verify parameters
If code throws ImportError, AttributeError, or TypeError, introspect the installed package and adapt the example to match the actual API rather than retrying.
methylKit Analysis
"Analyze methylation patterns across my samples" → Import per-cytosine methylation data, filter by coverage, normalize across samples, and test for differential methylation at individual CpG sites.
- R:
methylKit::methRead()→filterByCoverage()→normalizeCoverage()→calculateDiffMeth()
Read Bismark Coverage Files
library(methylKit)