scGO | R Documentation |
GO annotation for single-cell
scGO(
object = NULL,
key = NULL,
clusters = NULL,
logFC = 0.25,
only.pos = TRUE,
reference = "human",
extra = NULL
)
object |
Seurat object |
key |
Keyword where DGEs are stored |
clusters |
A vector of clusters, default clusters=NULL |
logFC |
A positive value to set the cutoff of logFC |
only.pos |
Only up-regulated genes are taken into account, default only.pos=TRUE |
reference |
Reference organism to set ['human' or 'mouse'], default reference = 'human' |
extra |
Extra slot used to fetch DGEs |
A list object that stored GO results.
Inspired by Yuan et al, Methods in Molecular Biology (2019)
data("H3N2_small")
require(topGO)
x <- scGO(object = H3N2_small,
key = "Infected_vs_Bystander",
logFC = 0.25,
only.pos = FALSE,
reference = "human"
)
head(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.