My objective is using Leiden algorithm on the 2D tSNE embeddings of the pbmc.
What I am unable to understand is that if FindClusters is working on the reduced dimensions or on the whole dataset, since the size of clust_obj is same as sce . Also, the number of clusters are way more than scanpy provides using the 2D tSNE projection on the same data.
Please help me understand if I am doing this correctly. If I have made any mistakes, kindly help me correct it.
A reduced dimension is the whole dataset in terms of all cells have values for the redDims. Typically these redDims though are based on a selection of genes (the highly variable ones) and the reducedDim, (usually PCA) is then used for graph-based clustering.
So, what I have done will find clusters on the reduced dims itself, and not use the whole assay?
Yes, and I strongly suggest you exactly follow the Seurat clustering and/or integration vignette.