-
Notifications
You must be signed in to change notification settings - Fork 1
/
dimensional_reduction_functions.R
38 lines (33 loc) · 1.25 KB
/
dimensional_reduction_functions.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
###########################################################################
#
# HEADER
#
###########################################################################
# Author: Matthew Muller
#
# Date: 2023-02-18
#
# Script Name: DESeq2 Helper Functions
#
# Notes:
# This script contains helper functions that can be used to assist in differential
# expression analysis using DESeq2. Most inputs are expected as DDS or SE objects.
###########################################################################
#
# LIBRARIES
#
###########################################################################
suppressMessages(library(tidyverse))
# LOAD FUNCTIONS
# space reserved for sourcing in functions
options(stringsAsFactors = FALSE)
source('https://raw.githubusercontent.com/mattmuller0/Rtools/main/converting_functions.R')
source('https://raw.githubusercontent.com/mattmuller0/Rtools/main/plotting_functions.R')
source('https://raw.githubusercontent.com/mattmuller0/Rtools/main/stats_functions.R')
###########################################################################
#
# CODE
#
###########################################################################
# Add code here
#