hbctraining / scRNA-seq_online

https://hbctraining.github.io/scRNA-seq_online/.
516 stars 180 forks source link

Some warnings to look over (from student) #15

Closed rkhetani closed 4 years ago

rkhetani commented 4 years ago

I have two warning messages although I could succeeded in following the homework.

-For “Clustering” part, when I run the following code, a warning message popped up. Even though I found this message, I succeeded in the following tasks. DimPlot(seurat_integrated,

-For “Clustering quality control” part, when I run the following code, I found this warning. As I said earlier, I could see the same result as the textbook.

Determine metrics to plot present in seurat_integrated@meta.data

metrics <- c("nUMI", "nGene", "S.Score", "G2M.Score", "mitoRatio") FeaturePlot(seurat_integrated,

  • reduction = "umap",
  • features = metrics,
  • pt.size = 0.4,
  • sort.cell = TRUE,
  • min.cutoff = 'q10',
  • label = TRUE) Warning: The sort.cell parameter is being deprecated. Please use the order parameter instead for equivalent functionality.
mistrm82 commented 4 years ago

updated all instances of this sort.cell argument to order. (cluster quality and marker identification lessons)