Name Mode Size
R 040000
data-raw 040000
data 040000
man 040000
src 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 1 kb
NAMESPACE 100644 0 kb
NEWS 100644 0 kb
README.md 100644 1 kb
README.md
# OVESEG OVESEG-test (One Versus Everyone Subtype Exclusively-expressed Genes test) is a statistically-principled multiple-group comparison method that can detect tissue/cell-specific marker genes (MGs) among many subtypes. To assess the statistical significance of MGs, OVESEG-test uses a specifically designed test statistics that mathematically matches the definition of MGs, and employs a specifically designed novel permutation scheme to estimate the corresponding distribution under null hypothesis where the expression patterns of non-MGs can be highly complex. This R package provides functions to compute OVESEG-test statistics and estimate p-values from weightedly aggregated permutations. ## Installation You can install the latest version of OVESEG following the instructions in OVESEG's bioconductor page: http://bioconductor.org/packages/OVESEG. Or, you can install it from github by ``` r devtools::install_github("Lululuella/OVESEG") ``` ## Example This is a basic example which shows you how to estimate p-values of MGs by OVESEG-test: ``` r ## specify the expression matrix, labels, number of permutations, and parallel option rtest <- OVESEGtest(y, group, NumPerm=999, BPPARAM=BiocParallel::SnowParam()) ```