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 count
to 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.tsv
should 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_transcriptome
should be the path to the reference transcriptome directory made bycellranger mkref
. -
create_bam
should be eithertrue
orfalse
. Iftrue
, the workflow will create BAM files from the CellRanger output.