Learn R Programming

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.

Copy Link

Version

Install

install.packages('DGEAR')

Monthly Downloads

171

Version

0.1.4

License

MIT + file LICENSE

Maintainer

Koushik Bardhan

Last Published

June 26th, 2024

Functions in DGEAR (0.1.4)

read_and_preprocess_data

Function to read data and perform initial pre-processing
DGEAR

Differential Gene Expression Analysis with R
perform_h_test

Function for Half's-T-Test Analysis
perform_wilcox_test

Function for Wilcoxon-Mann-Whitney U-Test
perform_dunnett_test

Function for Dunnett's Test
perform_anova

Function for ANOVA One-Way Test
gene_exp_data

A dataset containing gene expression data
perform_t_test

Function for t-Test Analysis