scHNSCC_270_M
Download processed single-cell RNA-seq data for this sample
Dataset Information
scHNDB ID
scHNSCC_270_M
Tissue Type
Tumor
Age
-
Gender
-
Position
-
Clinical Stage
-
Download Resources
Raw Data Files
Complete single-cell RNA sequencing data in standard 10X Genomics format
10X Raw Data Package
File: scHNSCC_270_M_10x_raw_package.zip
Format: ZIP
Description: Contains barcodes/features/matrix/metadata in standard 10X format
Zenodo download link pending upload.
10X format (4 files)
Files (typically included in the ZIP package above):
scHNSCC_270_M_barcodes.tsv.gzscHNSCC_270_M_features.tsv.gzscHNSCC_270_M_matrix.mtx.gzscHNSCC_270_M_metadata.csv.gz
Use Read10X() / sc.read_10x_mtx() on the folder containing barcodes, features, and matrix.
Usage Instructions
These files are compatible with standard single-cell analysis tools. To load the data:
In R (Seurat):
library(Seurat)
data <- Read10X(data.dir = "path/to/extracted/files")
seurat_obj <- CreateSeuratObject(counts = data)In Python (Scanpy):
import scanpy as sc
adata = sc.read_10x_mtx('path/to/extracted/files')