Entering edit mode
16 months ago
bioinfo
▴
150
Hello,
I am analyzing single cell gene expression data and I would like to use scrublet to remove doublets. Do I need to perform basic filtering like shown below before using scrublet or should I just use scrublet right after importing the h5 matrix file?
Basic filtering:
sc.pp.filter_cells(sample, min_genes=200)
sc.pp.filter_genes(sample, min_cells=3)
Thank you