Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

DepMap Cancer Dependency Analysis

Query DepMap CRISPR gene dependency and drug sensitivity data to find cancer-selective vulnerabilities and validate oncology targets.

Data & AnalyticsAdvanced33,0303,248AI score 7/10Last updated: Aug 9, 2026

What it does

Gives Claude a working playbook for the Broad Institute's Cancer Dependency Map (DepMap): CRISPR Chronos gene effect scores, RNAi (DEMETER2) dependencies, and PRISM compound sensitivity. It defines how to read Chronos scores (≤ -0.5 likely dependent, ≤ -1 strongly dependent), explains cell-line metadata fields, and ships Python helpers for finding selective dependencies, testing mutation-based biomarker associations with Mann-Whitney, and computing co-essentiality correlations. A reference table maps the key download files (CRISPRGeneEffect.csv, sample_info.csv, OmicsCNGene.csv, PRISM data) plus best-practice caveats like copy-number and expression confounders.

Who it's for

  • Drug discovery scientists validating oncology targets
  • Cancer genomics researchers hunting synthetic lethal partners
  • Grad students and bioinformaticians screening context-specific vulnerabilities

Example uses

  1. "Which genes are selectively essential in KRAS-mutant lung lines?" → compare gene effect between mutant and wild-type groups with significance testing.
  2. "Is my target pan-essential or cancer-selective?" → inspect distribution and variance across all lines to judge druggability.
  3. "Show the 20 genes most co-essential with my gene" → infer shared complexes or pathways from correlated dependency profiles.

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the skills/depmap folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/depmap/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/depmap ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/K-Dense-AI/scientific-agent-skills.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy just this skill: cp -r scientific-agent-skills/skills/depmap ~/.claude/skills/
  5. Install Python deps: pip install pandas numpy scipy requests
  6. Download CRISPRGeneEffect.csv and sample_info.csv from https://depmap.org/portal/download/all/ into your working directory (files can be hundreds of MB).
  7. Restart Claude Code and prompt something like "use the depmap skill to analyze KRAS dependency in lung lines".