What problem does it solve?
Simplifies and accelerates the complex process of single-cell RNA-seq data analysis, providing a standardized, automated workflow for quality control, visualization, and interpretation.
Core Features & Use Cases
- Comprehensive Workflow: From data loading and quality control to dimensionality reduction, clustering, and visualization.
- Quality Control: Automates filtering of low-quality cells and genes, and removes background noise.
- Normalization and Preprocessing: Standardizes data across samples, preparing it for downstream analysis.
- Dimensionality Reduction: PCA, UMAP, and t-SNE to visualize and reduce the dimensionality of high-dimensional data.
- Clustering and Marker Gene Identification: Leiden clustering and differential expression analysis for cell type annotation.
- Visualization: Generates publication-quality figures and plots for easy data interpretation.
- Use Case: Perfect for researchers analyzing single-cell RNA-seq data to identify cell clusters, marker genes, and perform trajectory analysis.
Quick Start
Import the Scanpy skill and analyze your data with the following command:
import scanpy as sc
sc.read_10x_h5('path/to/data/')
sc.pp.calculate_qc_metrics()
sc.pp.filter_cells(min_genes=200)
sc.pp.scale()
sc.tl.pca()
sc.tl.umap()
sc.tl.leiden()