The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

DGEAR

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.

Installation

You can install the development version of DGEAR like so:

# Simple installation:
install.packages("DGEAR")

Library calling

library(DGEAR)

Data format

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)

How it works

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.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.