Name Mode Size
R 040000
inst 040000
man 040000
tests 040000
vignettes 040000
.Rbuildignore 100644 0 kb
.Rhistory 100644 20 kb
.gitignore 100644 0 kb
DESCRIPTION 100644 1 kb
NAMESPACE 100644 0 kb
NEWS.md 100644 0 kb
README.md 100644 1 kb
README.md
# EpipwR EpipwR is an R package for conducting power analysis for EWAS with continuous or binary outcomes. It is based on empirical EWAS to generate realistic data sets while leveraging classic statistical theory to cut down on computation time. Our corresponding paper is currently under review at Bioinformatics Advances. # Installation EpipwR currently requires R version 4.4.0 or later. ``` #Bioconductor if (!require("BiocManager", quietly = TRUE)) install.packages("BiocManager") BiocManager::install("EpipwR") #github #install.packages("devtools") library(devtools) install_github("jbarth216/EpipwR.data") install_github("jbarth216/EpipwR", build_vignettes=TRUE) ``` # Usage A detailed EpipwR workflow can be found in the EpipwR vignette: ``` browseVignettes("EpipwR") ```