All Projects → btmonier → vidger

btmonier / vidger

Licence: GPL-3.0 License
Make rapid visualizations of RNA-seq data in R

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to vidger

GREIN
GREIN : GEO RNA-seq Experiments Interactive Navigator
Stars: ✭ 40 (+110.53%)
Mutual labels:  gene-expression, rna-seq-analysis
ideal
Interactive Differential Expression AnaLysis - DE made accessible and reproducible
Stars: ✭ 24 (+26.32%)
Mutual labels:  rna-seq-analysis, differential-expression
GeneTonic
Enjoy your transcriptomic data and analysis responsibly - like sipping a cocktail
Stars: ✭ 66 (+247.37%)
Mutual labels:  gene-expression, rna-seq-analysis
lncpipe
UNDER DEVELOPMENT--- Analysis of long non-coding RNAs from RNA-seq datasets
Stars: ✭ 24 (+26.32%)
Mutual labels:  rna-seq-analysis, differential-expression
D3E
Discrete Distributional Differential Expression
Stars: ✭ 19 (+0%)
Mutual labels:  differential-expression
Interactive-3D-Plotting-in-Seurat-3.0.0
This repository contains R code, with which you can create 3D UMAP and tSNE plots of Seurat analyzed scRNAseq data
Stars: ✭ 80 (+321.05%)
Mutual labels:  rna-seq-analysis
Data-Wrangling-with-Python
Simplify your ETL processes with these hands-on data sanitation tips, tricks, and best practices
Stars: ✭ 90 (+373.68%)
Mutual labels:  data-munging
cobrame
A COBRApy extension for genome-scale models of metabolism and expression (ME-models)
Stars: ✭ 30 (+57.89%)
Mutual labels:  gene-expression
enformer-pytorch
Implementation of Enformer, Deepmind's attention network for predicting gene expression, in Pytorch
Stars: ✭ 146 (+668.42%)
Mutual labels:  gene-expression
MERINGUE
characterizing spatial gene expression heterogeneity in spatially resolved single-cell transcriptomics data with nonuniform cellular densities
Stars: ✭ 33 (+73.68%)
Mutual labels:  gene-expression
iMOKA
interactive Multi Objective K-mer Analysis
Stars: ✭ 19 (+0%)
Mutual labels:  rna-seq-analysis
graphsim
R package: Simulate Expression data from igraph network using mvtnorm (CRAN; JOSS)
Stars: ✭ 16 (-15.79%)
Mutual labels:  gene-expression
diffexpr
Porting DESeq2 and DEXSeq into python via rpy2
Stars: ✭ 49 (+157.89%)
Mutual labels:  differential-expression
NetBID
Data-driven Network-based Bayesian Inference of Drivers
Stars: ✭ 21 (+10.53%)
Mutual labels:  rna-seq-analysis
batchglm
Fit generalized linear models in python.
Stars: ✭ 22 (+15.79%)
Mutual labels:  differential-expression
heatmap-scatter-dash
Interactive visualizations for differential expression
Stars: ✭ 25 (+31.58%)
Mutual labels:  differential-expression
neuroexpresso
📊 Gene expression in neuroexpresso database
Stars: ✭ 15 (-21.05%)
Mutual labels:  gene-expression
sports1.1
Small non-coding RNA annotation Pipeline Optimized for rRNA- and tRNA-Derived Small RNAs
Stars: ✭ 35 (+84.21%)
Mutual labels:  rna-seq-analysis
adage
Data and code related to the paper "ADAGE-Based Integration of Publicly Available Pseudomonas aeruginosa..." Jie Tan, et al · mSystems · 2016
Stars: ✭ 61 (+221.05%)
Mutual labels:  gene-expression
psichomics
Interactive R package to quantify, analyse and visualise alternative splicing
Stars: ✭ 26 (+36.84%)
Mutual labels:  gene-expression

ViDGER

Build Status codecov bioc platforms

Overview

ViDGER (Visualization of Differential Gene Expression using R), is an R package that can rapidly generate information-rich visualizations for the interpretation of differential gene expression results from three widely-used tools: Cuffdiff, DESeq2, and edgeR.

Installation

The stable version of this package is available on Bioconductor . You can install it by:

if (!require("BiocManager")) install.packages("BiocManager")
BiocManager::install("vidger")

If you want the latest version, install it directly from this GitHub repo:

if (!require("devtools")) install.packages("devtools")
devtools::install_github("btmonier/vidger", ref = "devel")

Functions

The stable release of vidger has 9 visualization functions:

  • vsScatterPlot()
  • vsScatterMatrix()
  • vsBoxplot()
  • vsDEGMatrix()
  • vsVolcano()
  • vsVolcanoMatrix()
  • vsMAPlot()
  • vsMAMatrix()
  • vsFourWay()

Loading test data

To simulate the usage of the three aformentioned tools, "toy" data sets have been implemented in this package. Each of these data sets represents their respective R class:

  • df.cuff A cuffdiff output file.
  • df.deseq A DESeq2 object class.
  • df.edger An edgeR object class.

To load these data sets, use the following command:

data("<object-type>")

...where "<object-type>" is one of the previously mentioned data sets.

Getting help

For additional information on these functions, please see the given documentation in the vidger package by adding the ? help operator before any of the given functions in this package or by using the help() function.

For a more in-depth analysis, consider reading the vignette provided with this package:

vignette("vidger")

Last updated: 2019-01-18

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].