Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ROC analysis of CITE-seq / AVID-seq reagents #90

Open
jayhesselberth opened this issue Dec 10, 2021 · 2 comments
Open

ROC analysis of CITE-seq / AVID-seq reagents #90

jayhesselberth opened this issue Dec 10, 2021 · 2 comments
Labels
enhancement New feature or request

Comments

@jayhesselberth
Copy link
Member

Thoughts on ROC analysis of protein-DNA tags as classifiers.

The question is how well a given reagent performs as a classifer relative to gene expression classifications (i.e., assuming these are the "gold standards"). AUC values could provide information about reagent quality and can be compared across reagents, batches, etc.

For a function roc_analysis(), Input data would be so or sce with:

  1. Cell type classifications based on gene expression (e.g. based on clustifyr)
  2. Raw or normalized counts of protein-DNA tags (CITE-seq antibodies, AVID-tags, antigen-DNA tags, etc)

For a comparison, assume two possible states (e.g., B vs T cell, or B cell vs all other cells). Then step through the range of recovered protein-DNA tag signal and calculate:

  1. True positive rate (TP / (TP + FN)). TP = number of B cells scoring positive, FN = number of B cells scoring negative.
  2. False positive rate (FP / FP + TN). FP = number of T cells scoring positive, TN = number of T cells scoring negative.

plot_roc() would plot TPR vs FPR for each of the ranked detection values, and roc_auc() would provide the AUC value from the data.

cc @catherinenicholas

@jayhesselberth
Copy link
Member Author

https://rviews.rstudio.com/2019/03/01/some-r-packages-for-roc-curves/

Maybe build off of pROC or ROCR. Base R plots make me sad

@jayhesselberth
Copy link
Member Author

@sheridar sheridar added the enhancement New feature or request label Dec 10, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants