knitr::opts_chunk$set(echo = TRUE)
library(GEGVIC) library(clusterProfiler) counts <- read.csv(params$counts, header = TRUE, sep = ',') metadata <- read.csv(params$metadata, header = TRUE, sep = ',') gmt <- read.gmt(params$gmt) biomart <- read.csv(params$biomart, header = TRUE, sep = ',') #gv_module muts <- read.csv(params$muts, header = TRUE, sep = ',')
# Get data PCA ge_pca(counts = counts, genes_id = params$genes_id, metadata = metadata, design = params$design, colors = params$colors)
# Run differential gene expression analysis results.dds <- ge_diff_exp(counts = counts, genes_id = params$genes_id, metadata = metadata, design = params$design, ref_level = params$ref_level, shrink = params$shrink)
# Annotate gene symbols annot.res <- ge_annot(results_dds = results.dds, genes_id = params$genes_id, biomart = biomart)
# Create volcano plot ge_volcano(annot_res = annot.res, fold_change = params$fold_change, p.adj = params$p.adj)
# Obtain GSEA results ge_gsea(annot_res = annot.res, gmt = gmt, gsea_pvalue = params$gsea_pvalue)
gv_mut_signatures(muts = muts, metadata = metadata, response = Response, gbuild = 'BSgenome.Hsapiens.UCSC.hg19', mut_sigs = 'COSMIC_v2_SBS_GRCh37', tri.counts.method = 'default', colors = c('black', 'orange'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.