README.md

epiNEM

EpiNEM is a direct extension of the NEM framework. epiNEM focuses on the epistasis between three S-genes, namely two parents and one child. Epistasis occurs, when the single effects of the two parents do not explain their combined effect on the child. EpiNEM models this epistasis with five Boolean logical gates for a triplet A->C, B->C.

Install:

Open R and input:

install.packages("devtools")

library(devtools)

install_github("cbg-ethz/epiNEM")

library(epiNEM)

Check out the vignette for working examples.

vignette(package="epiNEM")

Toy example:

data <- matrix(sample(c(0,1), 100*4, replace = T), 100, 4)

colnames(data) <- c("A", "A.B", "B", "C")

rownames(data) <- paste("E", 1:100, sep = "_")

res <- epiNEM(data, method = "exhaustive")

plot(res)


Try the epiNEM package in your browser

Any scripts or data that you put into this service are public.

epiNEM documentation built on Nov. 8, 2020, 6:51 p.m.