Changes between Version 24 and Version 25 of SOP/scRNA-seq
- Timestamp:
- 10/05/20 13:49:26 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOP/scRNA-seq
v24 v25 153 153 * consider each cell as a sample 154 154 * aggregate counts across all cells in a group/cluster, and treat them as one sample 155 Seurat has 2 functions "FindAllMarkers" and "FindMarkers" that work well as long as the fold change and percentage of cells expressing the gene thresholds are not relaxed from the defaults "logfc.threshold = 0.25, min.pct = 0.1." More stringent thresholds (MIN_LOGFOLD_CHANGE = 0.7, MIN_PCT_CELLS_EXPR_GENE = .25) also work well.155 Seurat has 2 functions "FindAllMarkers" and "FindMarkers" that work well as long as the fold change and percentage of cells expressing the gene thresholds are not too relaxed. We recommend logfc.threshold = 0.7, min.pct = .25.). 156 156 * example command to compare each cluster to all other clusters: 157 157 {{{ 158 MIN_LOGFOLD_CHANGE = 0.7 159 MIN_PCT_CELLS_EXPR_GENE = .25 158 160 all.markers.pos.wilcox = FindAllMarkers(all_Filt, 159 161 min.pct = MIN_PCT_CELLS_EXPR_GENE,