Revision c8bcf8fad3459269df30dba7e52c81e62ca181d0 authored by Pierre Millard on 16 January 2021, 10:50:12 UTC, committed by Pierre Millard on 16 January 2021, 10:50:12 UTC
1 parent 8f8b8a5
Raw File
set_env.R
####################################
# Supplementary information folder #
####################################

# We assume to be already in the working directory, otherwise update the path of the supplementary data folder
wd <- getwd()
#wd <- "C:/Users/millard/Documents/GIT/acetate_regulation/acetate_regulation/"

model_dir <- file.path(wd, "model", "cps")
results_dir <- file.path(wd, "results")

###################
# Set environment #
###################

# load libraries
library(RColorBrewer)
library(gplots)
library(CoRC)
library(stringr)

setwd(wd)
source("misc.R")
back to top