bio-crispr-screens-crispresso-editing
CRISPResso2 for analyzing CRISPR gene editing outcomes. Quantifies indels, HDR efficiency, and generates comprehensive editing reports. Use when analyzing amplicon sequencing data from CRISPR editing experiments to assess editing efficiency.
Best use case
bio-crispr-screens-crispresso-editing is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
CRISPResso2 for analyzing CRISPR gene editing outcomes. Quantifies indels, HDR efficiency, and generates comprehensive editing reports. Use when analyzing amplicon sequencing data from CRISPR editing experiments to assess editing efficiency.
Teams using bio-crispr-screens-crispresso-editing 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/bio-crispr-screens-crispresso-editing/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How bio-crispr-screens-crispresso-editing Compares
| Feature / Agent | bio-crispr-screens-crispresso-editing | 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?
CRISPResso2 for analyzing CRISPR gene editing outcomes. Quantifies indels, HDR efficiency, and generates comprehensive editing reports. Use when analyzing amplicon sequencing data from CRISPR editing experiments to assess editing efficiency.
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
## Version Compatibility
Reference examples tested with: CRISPResso2 2.2+, pandas 2.2+
Before using code patterns, verify installed versions match. If versions differ:
- Python: `pip show <package>` then `help(module.function)` to check signatures
- CLI: `<tool> --version` then `<tool> --help` to confirm flags
If code throws ImportError, AttributeError, or TypeError, introspect the installed
package and adapt the example to match the actual API rather than retrying.
# CRISPResso2 Editing Analysis
**"Quantify CRISPR editing from my amplicon data"** → Analyze amplicon sequencing to measure indel frequencies, HDR efficiency, and frameshift rates from CRISPR gene editing experiments.
- CLI: `CRISPResso --fastq_r1 reads.fq --amplicon_seq ATGC --guide_seq GUIDE`
## Basic Analysis
**Goal:** Quantify CRISPR editing outcomes from amplicon sequencing of a single target site.
**Approach:** Align amplicon reads against the reference and guide sequences with CRISPResso, which reports indel frequencies, allele tables, and editing efficiency plots.
```bash
# Analyze single amplicon
CRISPResso \
--fastq_r1 sample_R1.fastq.gz \
--fastq_r2 sample_R2.fastq.gz \
--amplicon_seq AATGTCCCCCAATGGGAAGTTCATCTGGCACTGCCCACAGGTGAGGAGGTCATGATCCCCTTCTGGAGCTCCCAACGGGCCGTGGTCTGGTTCATCATCTGTAAGAATGGCTTCAAGAGGCTCGGCTGTGGTT \
--guide_seq CTGCCCACAGGTGAGGAGGT \
--output_folder crispresso_output \
--name sample1
# Output includes:
# - Editing efficiency statistics
# - Indel distribution
# - Allele frequency plots
```
## With HDR Template
```bash
# Analyze HDR editing
CRISPResso \
--fastq_r1 hdr_sample_R1.fastq.gz \
--fastq_r2 hdr_sample_R2.fastq.gz \
--amplicon_seq AATGTCCCCCAATGGGAAGTTCATCTGGCACTGCCCACAGGTGAGGAGGTCATGATCCCCTTCTGGAGCTCCCAACGGGCCGTGGTCTGGTTCATCATCTGTAAGAATGGCTTCAAGAGGCTCGGCTGTGGTT \
--guide_seq CTGCCCACAGGTGAGGAGGT \
--expected_hdr_amplicon_seq AATGTCCCCCAATGGGAAGTTCATCTGGCACTGCCCACAGGTGAGGAGGTCATGATCCCCTTCTGGAGCTCCCAACGGGCCGTGGTCTGGTTCATCATCTGTAAGAATGGCTTCAAGATGCTCGGCTGTGGTT \
--output_folder hdr_output \
--name hdr_sample
```
## Batch Analysis
**Goal:** Process multiple CRISPR editing samples in a single run.
**Approach:** Define a batch file listing sample names, FASTQ paths, amplicon sequences, and guide sequences, then run CRISPRessoBatch for parallel multi-sample analysis.
```bash
# Create batch file (tab-separated)
# batch.txt:
# name fastq_r1 fastq_r2 amplicon_seq guide_seq
# sample1 s1_R1.fq.gz s1_R2.fq.gz AMPLICON1 GUIDE1
# sample2 s2_R1.fq.gz s2_R2.fq.gz AMPLICON2 GUIDE2
CRISPRessoBatch \
--batch_settings batch.txt \
--output_folder batch_output \
--n_processes 8
```
## Pool Analysis (Multiple Guides)
```bash
# Analyze pooled amplicons
CRISPRessoPooled \
--fastq_r1 pooled_R1.fastq.gz \
--fastq_r2 pooled_R2.fastq.gz \
--amplicon_file amplicons.txt \
--output_folder pooled_output \
--n_processes 8
# amplicons.txt format:
# amplicon_name amplicon_seq guide_seq
```
## WGS Analysis
```bash
# Analyze off-target editing from WGS
CRISPRessoWGS \
--bam aligned.bam \
--reference genome.fa \
--regions_file targets.bed \
--output_folder wgs_output
```
## Parse Results in Python
**Goal:** Extract editing metrics from CRISPResso output for downstream analysis or reporting.
**Approach:** Load the mapping statistics and quantification files from the CRISPResso output directory, and parse the compressed allele frequency table for allele-level detail.
```python
import pandas as pd
import json
# Load mapping statistics
with open('crispresso_output/CRISPResso_mapping_statistics.txt') as f:
stats = {}
for line in f:
key, value = line.strip().split('\t')
stats[key] = value
print(f"Reads aligned: {stats['READS_ALIGNED']}")
print(f"Reads aligned %: {stats['READS_ALIGNED_PERCENTAGE']}")
# Load quantification
quant = pd.read_csv('crispresso_output/CRISPResso_quantification_of_editing_frequency.txt', sep='\t')
print(quant)
# Load allele frequency
alleles = pd.read_csv('crispresso_output/Alleles_frequency_table.zip', compression='zip', sep='\t')
print(f"Unique alleles: {len(alleles)}")
print(alleles.head(10))
```
## Key Output Files
```
CRISPResso_output/
├── CRISPResso_mapping_statistics.txt # Read mapping stats
├── CRISPResso_quantification_of_editing_frequency.txt # Summary
├── Alleles_frequency_table.zip # All allele sequences
├── CRISPResso_RUNNING_LOG.txt # Analysis log
├── Indel_histogram.png # Indel size distribution
├── Insertion_deletion_substitution.png # Edit type pie chart
├── Alleles_frequency_table.png # Top allele bar plot
└── CRISPResso2_info.json # Machine-readable summary
```
## Quantify Specific Outcomes
```bash
# Define expected outcomes
CRISPResso \
--fastq_r1 sample_R1.fastq.gz \
--amplicon_seq AMPLICON \
--guide_seq GUIDE \
--coding_seq CODING_REGION \
--quantification_window_size 5 \
--quantification_window_center -3 \
--output_folder output
```
## Base Editing Analysis
```bash
# For base editors (CBE/ABE)
CRISPResso \
--fastq_r1 base_edit_R1.fastq.gz \
--amplicon_seq AMPLICON \
--guide_seq GUIDE \
--base_editor_output \
--conversion_nuc_from C \
--conversion_nuc_to T \
--output_folder base_edit_output
```
## Prime Editing Analysis
```bash
# For prime editing
CRISPResso \
--fastq_r1 prime_edit_R1.fastq.gz \
--amplicon_seq AMPLICON \
--guide_seq GUIDE \
--prime_editing_pegRNA_spacer_seq SPACER \
--prime_editing_pegRNA_extension_seq EXTENSION \
--prime_editing_pegRNA_scaffold_seq SCAFFOLD \
--output_folder prime_edit_output
```
## Compare Samples
```bash
# Compare two CRISPResso runs
CRISPRessoCompare \
--crispresso_output_folder_1 sample1_output \
--crispresso_output_folder_2 sample2_output \
--output_folder comparison_output
```
## Related Skills
- screen-qc - QC for editing experiments
- read-alignment/bwa-alignment - Align reads for WGS analysis
- variant-calling/variant-calling - Detect editing-induced variantsRelated Skills
tooluniverse-crispr-screen-analysis
Comprehensive CRISPR screen analysis for functional genomics. Analyze pooled or arrayed CRISPR screens (knockout, activation, interference) to identify essential genes, synthetic lethal interactions, and drug targets. Perform sgRNA count processing, gene-level scoring (MAGeCK, BAGEL), quality control, pathway enrichment, and drug target prioritization. Use for CRISPR screen analysis, gene essentiality studies, synthetic lethality detection, functional genomics, drug target validation, or identifying genetic vulnerabilities.
bio-genome-engineering-prime-editing-design
Design pegRNAs for prime editing using PrimeDesign algorithms. Generate spacer, PBS, and RT template sequences for precise genomic modifications without double-strand breaks. Use when designing prime editing experiments for precise insertions, deletions, or point mutations.
bio-genome-engineering-base-editing-design
Design guides for cytosine and adenine base editing using editing window optimization and BE-Hive outcome prediction. Select optimal positions for C-to-T or A-to-G conversions without double-strand breaks. Use when designing base editor experiments for precise nucleotide changes.
bio-crispr-screens-screen-qc
Quality control for pooled CRISPR screens. Covers library representation, read distribution, replicate correlation, and essential gene recovery. Use when assessing screen quality before hit calling or diagnosing poor screen performance.
bio-crispr-screens-mageck-analysis
MAGeCK (Model-based Analysis of Genome-wide CRISPR-Cas9 Knockout) for pooled CRISPR screen analysis. Covers count normalization, gene ranking, and pathway analysis. Use when identifying essential genes, drug targets, or resistance mechanisms from dropout or enrichment screens.
bio-crispr-screens-library-design
CRISPR library design for genetic screens. Covers sgRNA selection, library composition, control design, and oligo ordering. Use when designing custom sgRNA libraries for knockout, activation, or interference screens.
bio-crispr-screens-jacks-analysis
JACKS (Joint Analysis of CRISPR/Cas9 Knockout Screens) for modeling sgRNA efficacy and gene essentiality. Use when analyzing multiple CRISPR screens simultaneously or when accounting for variable sgRNA efficiency across experiments.
bio-crispr-screens-hit-calling
Statistical methods for calling hits in CRISPR screens. Covers MAGeCK, BAGEL2, drugZ, and custom approaches for identifying essential and resistance genes. Use when identifying significant genes from screen count data after QC passes.
bio-crispr-screens-batch-correction
Batch effect correction for CRISPR screens. Covers normalization across batches, technical replicate handling, and batch-aware analysis. Use when combining screens from multiple batches or correcting systematic technical variation.
bio-crispr-screens-base-editing-analysis
Analyzes base editing and prime editing outcomes including editing efficiency, bystander edits, and indel frequencies. Use when quantifying CRISPR base editor results, comparing ABE vs CBE efficiency, or assessing prime editing fidelity.
zinc-database
Access ZINC (230M+ purchasable compounds). Search by ZINC ID/SMILES, similarity searches, 3D-ready structures for docking, analog discovery, for virtual screening and drug discovery.
zarr-python
Chunked N-D arrays for cloud storage. Compressed arrays, parallel I/O, S3/GCS integration, NumPy/Dask/Xarray compatible, for large-scale scientific computing pipelines.