Seurat -Filter, normalize, regress and detect variable genes
Description
This tool filters out cells, normalizes gene expression values, and regresses out uninteresting sources of
variation.
It then detects highly variable genes across the cells, which are used for performing principal component
analysis in the next step.
You can also choose to filter out the differences caused by the cell cycle stage.
Before normalisation, the tool filters out potential empties, multiplets and broken cells based on the
parameters.
Note, that this tool and Seurat -SCTransform: Filter,
normalize, regress and detect variable genes
tool are doing the same thing using different methods: you can choose between the two.
Parameters
- Filter out cells which have less than this many genes expressed [200]
- Filter out cells which have higher unique gene count [2500]
- Filter out cells which have higher mitochondrial transcript percentage [5]
- Regress out cell cycle differences [no]
- Number of variable features to return [2000]
- Perform log normalization [yes]
- Scale factor in the log normalization [10000]
Details
The tool performs the following four steps. As an input, give the Seurat R-object (Robj) from the Seurat setup
-tool.
- Filtering is performed in order to remove empties, multiplets and broken cells.
You can use the QC-plots.pdf from the Seurat- Setup and QC tool to estimate the the upper limit for
the number of genes per cell and mitochondrial transcript percentage.
- Expression values are normalized accross the cells using global scaling normalization: gene’s
expression value in a
cell is divided by the the total number of transcripts in that cell, the ratio is multiplied by a scale
factor
(10,000 by default) and log-transformed.
- Uninteresting sources of variation in the expression values are regressed out in order to improve
dimensionality reduction and clustering later on.
Seurat implements a basic regression by constructing linear models to predict gene expression based on
user-defined variables.
This tool regresses on the number of detected molecules per cell as well as the percentage
mitochondrial transcript content.
You can also choose to regress out cell cycle differences.
By choosing all differences the tool removes all signal associated with cell cycle.
In some cases this method can negatively impact downstream analysis,
particularly in differentiating processes, where stem cells are quiescent and differentiated cells are
proliferating (or vice versa).
Alternatively you can regress out the difference between the G2M and S phase scores.
This means that signals separating non-cycling cells and cycling cells will be maintained, but differences
in cell cycle phase amongst proliferating cells (which are often uninteresting), will be regressed out of
the data.
For more information about cell cycle filtering, check out the vignette here.
In current Seurat version, a list of cell cycle markers (from Tirosh et al, 2015 ) is loaded with
Seurat;
s.genes
"MCM5" "PCNA" "TYMS" "FEN1" "MCM2"
"MCM4" "RRM1" "UNG" "GINS2" "MCM6"
"CDCA7" "DTL" "PRIM1" "UHRF1" "MLF1IP"
"HELLS" "RFC2" "RPA2" "NASP" "RAD51AP1"
"GMNN" "WDR76" "SLBP" "CCNE2" "UBR7"
"POLD3" "MSH2" "ATAD2" "RAD51" "RRM2"
"CDC45" "CDC6" "EXO1" "TIPIN" "DSCC1"
"BLM" "CASP8AP2" "USP1" "CLSPN" "POLA1"
"CHAF1B" "BRIP1" "E2F8"
g2m.genes
"HMGB2" "CDK1" "NUSAP1" "UBE2C" "BIRC5"
"TPX2" "TOP2A" "NDC80" "CKS2" "NUF2"
"CKS1B" "MKI67" "TMPO" "CENPF" "TACC3"
"FAM64A" "SMC4" "CCNB2" "CKAP2L" "CKAP2"
"AURKB" "BUB1" "KIF11" "ANP32E" "TUBB4B"
"GTSE1" "KIF20B" "HJURP" "CDCA3" "HN1"
"CDC20" "TTK" "CDC25C" "KIF2C" "RANGAP1"
"NCAPD2" "DLGAP5" "CDCA2" "CDCA8" "ECT2"
"KIF23" "HMMR" "AURKA" "PSRC1" "ANLN"
"LBR" "CKAP5" "CENPE" "CTCF" "NEK2"
"G2E3" "GAS2L3" "CBX5" "CENPA"
- Genes which are highly variable across the cells are detected by calculating the average expression
and dispersion for each gene,
placing these genes into bins, and then calculating a z-score for dispersion within each bin.
These settings vary based on the data type, heterogeneity in the sample, and normalization strategy.
For example for UMI data normalized to a total of 10 000 molecules, one would expect ~2,000 variable genes.
These will be used in downstream analysis, like PCA.
The procedure used in Seurat3 is described in detail here.
For more details, please check the Seurat tutorials.
Output
- seurat_obj.Robj: The Seurat R-object to pass to the next Seurat tool, or to import to R. Not viewable in
Chipster.
- Dispersion.pdf: The variation vs average expression plots (in the second plot, the 10 most highly variable
genes are labeled).
If you selected to regress out cell cycle differences, PCA plots on cell cycle genes before and after the
regression
will be added in the end of this pdf. Also lists the number of highly variable genes.