knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(RNAseqStat) results_dir = "test"
runAll
will run full workflow in default parameters
runAll(count_data = counts_input, group_list = group_list, test_group = "T", control_group = "C", OrgDb = 'org.Hs.eg.db', dir = results_dir)
This step contains following 5 steps, more detail parameters can be set in following functions.
This step is useful to quickly check you data. dir Can be any wherr you want to save results file.
pre_check(counts_data = counts_input, group_list = group_list, dir = results_dir)
DEG analysis will be run by limma edgeR and DESeq2 in this step.
deg_run(counts_input,group_list,test_group = "T", control_group = "C",dir = results_dir)
Enrichment analysis of GO will be done in this Step.
enrichGO_run(DEG_df, x = "log2FoldChange", y = "pvalue", dir = results_dir)
Enrichment analysis of KEGG will be done in this Step.
enrichKEGG_run(DEG_df, x = "log2FoldChange", y = "pvalue", dir = results_dir)
enrichgesKEGG_run(DEG_df, x = "log2FoldChange", dir = results_dir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.