| FindDEACC | R Documentation |
Calculate precision, recall, and TNR of identified DE genes across different doublet-detection methods and DE methods.
FindDEACC(DE.list, DE.truth, gene.all)
DE.list |
A list of identified DE genes. |
DE.truth |
A list of ground-truth DE genes. |
gene.all |
A vector of all gene names. |
A list of precision, recall, and TNR across different doublet-detection methods and DE methods.
table.DE.all <- data.frame()
for(DE.method in c('MAST', 'wilcox', 'bimod')){
DE.list <- FindDE(data.removal.list = data.removal.list, method.de = DE.method)
DE.acc.list <- FindDEACC(DE.list=DE.list, DE.truth=data.de$gene.de, gene.all=rownames(data.de$count))
table.DE <- ListToDataframe(l = DE.acc.list, type = 'barplot')
table.DE[['DE_method']] <- DE.method
table.DE.all <- rbind(table.DE.all, table.DE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.