cellranger_count.smk¶
Snakemake workflow for gene count quantification from single-cell/nucleus RNA-seq data by Cell Ranger.
Note
Please make sure that you have Singularity and Snakemake installed on your system and cloned the SnakeNgs repository.
Workflow¶
The rulegraph was created by snakevision.
- Make aliases for the input FASTQ files and convert the file names to the 10x Genomics format (e.g.,
sample_S1_L001_R1_001.fastq.gz). - Run
cellranger countto quantify gene expression from the input FASTQ files. - Make summary statistics using MultiQC.
Usage¶
1 2 3 4 5 | |
config.yaml should contain the following information:
1 2 3 4 | |
experiment_table.tsvshould contain the following information:
1 2 3 4 | |
R1 and R2 are comma-separated paths to the FASTQ files for read 1 and read 2, respectively.
-
reference_transcriptomeshould be the path to the reference transcriptome directory made bycellranger mkref. -
create_bamshould be eithertrueorfalse. Iftrue, the workflow will create BAM files from the CellRanger output.