Nothing
The goal of DGEAR is to help the researchers find differentially expressed gene from microarray gene expression data or from the RNA seq count data the easiest way possible.
You can install the development version of DGEAR like so:
# Simple installation:
install.packages("DGEAR")
library(DGEAR)
DGEAR has it's own example data that can be accessible like so:
# Data will be loaded with lazy loading and can be accessible when needed.
data("gene_exp_data")
head(gene_exp_data)
Here's an example code to run the example dataset.
library(DGEAR)
data("gene_exp_data")
DGEAR(dataframe = gene_exp_data, con1 = 1, con2 = 10,
exp1 = 11, exp2 = 20, alpha = 0.05, votting_cutoff = 2)
Try to find the DEGs from the example dataset with all the default arguments and understand it's working.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.