JonathanShor / DoubletDetection

Doublet detection in single-cell RNA-seq data.

Home Page:https://doubletdetection.readthedocs.io/en/stable/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

List of barcode duplets

ibseq opened this issue · comments

commented

hello, is there a way once we've ran dupeltdetection to have a list of these barcodes rather than only the umap plot?

thanks
ibseq

As stated on the readme, you can run

labels = clf.fit(raw_counts).predict() and labels is 1 if there is a doublet and 0 if not. np.nan are ambiguous cells. Labels will be in the same order as the cells in raw_counts, so you should be able to link labels to your barcodes.