hic-compartment-shift
This skill performs A/B compartment shift analysis between two Hi-C samples.
Best use case
hic-compartment-shift is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
This skill performs A/B compartment shift analysis between two Hi-C samples.
Teams using hic-compartment-shift should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/32-hic-compartment-shift/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How hic-compartment-shift Compares
| Feature / Agent | hic-compartment-shift | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
This skill performs A/B compartment shift analysis between two Hi-C samples.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# Compartment shift Analysis
---
## Overview
This skill performs A/B compartment shift analysis using PC1 eigenvector values extracted from Hi-C data, following the HOMER framework. It supports two conditions, each with two or more replicates, and uses the PC1 values (E1 column) from user-provided TSV files.
Major steps include:
- Refer to **Inputs & Outputs** to verify necessary files.
- **Always prompt user** for genome assembly used. Never decide by yourself.
- Convert TSV (Chrom, start, end, weight, E1) into HOMER-compatible PC1 bedGraph files.
- Generate a unified genomic bin list for annotatePeaks.
- Extract PC1 values across all samples.
- Perform differential PC1 analysis with replicate-aware limma statistics.
- Produce differential compartment tables and stitched compartment-shift domains.
---
## When to use this skill
Use this skill when you want to:
- Detect compartment shifts between two conditions (e.g., cell type 1 vs cell type 2)
- Identify statistically significant changes in PC1 values across genomic bins
- Determine regions that flip between A and B compartments
- Integrate compartment shift results with other genomic datasets
---
## Inputs & Outputs
### Inputs
Example input set:
- `CT1_rep1.tsv`
- `CT1_rep2.tsv`
- `CT2_rep1.tsv`
- `CT2_rep2.tsv`
Additional requirements:
- All TSVs must share identical bins.
---
### Outputs
```bash
compartments_shift_analysis/
shift_regions/
diff_PC1_CT2_vs_CT1.txt
regions.*.txt # other region files output by the tools used.
temp/
bins_PC1.txt
PC1_all_samples.txt
*.bedGraph # other bedGraph file
```
---
## Decision Tree
### Step 1: Convert TSV files to PC1 bedGraph
```bash
awk 'BEGIN{OFS=" "} NR>1 && NF==5 {print $1, $2, $3, $5}' CT1_rep1.tsv > CT1_rep1.PC1.bedGraph
```
### Step 2: Create a bin list for annotatePeaks
Use any one TSV as the template:
```bash
awk 'BEGIN{OFS=" "} NR>1 && NF==5 {print $1, $2, $3}' CT1_rep1.tsv > bins_PC1.txt
```
The resulting `bins_PC1.txt` defines genomic intervals for PC1 extraction.
### Step 3: Compartment shift analysis
Call:
- `mcp_homer-tools__homer_differential_PC1`
with:
- `bins_pc1_path`: Path to the bins_PC1.txt file generated earlier,
- `genome`: HOMER genome identifier, **provided by user**.
- `bedgraph_paths`: List of PC1 bedGraph files in the exact replicate order (e.g., CT1_rep1, CT1_rep2, CT2_rep1, CT2_rep2).
- `experiment_labels`: List of experiment group labels matching bedGraph order (e.g. ['CT1','CT1','CT2','CT2']).
- `merged_output_path`: Output path for merged PC1 table. Empty → '<bins_pc1_path>.merged_PC1.txt'.
- `diff_output_path`: Output path for differential PC1 table. Empty → 'diff_PC1.txt'.Related Skills
hic-compartments-calling
This skill performs PCA-based A/B compartments calling on Hi-C .mcool datasets using pre-defined MCP tools from the cooler-tools, cooltools-tools, and plot-hic-tools servers.
grail-miner
This skill assists in setting up, managing, and optimizing Grail miners on Bittensor Subnet 81, handling tasks like environment configuration, R2 storage, model checkpoint management, and performance tuning.
thor-skills
An entry point and router for AI agents to manage various THOR-related cybersecurity tasks, including running scans, analyzing logs, troubleshooting, and maintenance.
astro
This skill provides essential Astro framework patterns, focusing on server-side rendering (SSR), static site generation (SSG), middleware, and TypeScript best practices. It helps AI agents implement secure authentication, manage API routes, and debug rendering behaviors within Astro projects.
vly-money
Generate crypto payment links for supported tokens and networks, manage access to X402 payment-protected content, and provide direct access to the vly.money wallet interface.
modal-deployment
Run Python code in the cloud with serverless containers, GPUs, and autoscaling using Modal. This skill enables agents to generate code for deploying ML models, running batch jobs, serving APIs, and scaling compute-intensive workloads.
ontopo
An AI agent skill to search for Israeli restaurants, check table availability, view menus, and retrieve booking links via the Ontopo platform, acting as an unofficial interface to its data.
chrome-debug
This skill empowers AI agents to debug web applications and inspect browser behavior using the Chrome DevTools Protocol (CDP), offering both collaborative (headful) and automated (headless) modes.
lets-go-rss
A lightweight, full-platform RSS subscription manager that aggregates content from YouTube, Vimeo, Behance, Twitter/X, and Chinese platforms like Bilibili, Weibo, and Douyin, featuring deduplication and AI smart classification.
ux
This AI agent skill provides comprehensive guidance for creating professional and insightful User Experience (UX) designs, covering user research, information architecture, interaction design, visual guidance, and usability evaluation. It aims to produce actionable, user-centered solutions that avoid generic AI aesthetics.
whisper-transcribe
Transcribes audio and video files to text using OpenAI's Whisper CLI, enhanced with contextual grounding from local markdown files for improved accuracy.
tech-blog
Generates comprehensive technical blog posts, offering detailed explanations of system internals, architecture, and implementation, either through source code analysis or document-driven research.