Skip to content

Commit

Permalink
Merge pull request #1 from IBPA/master
Browse files Browse the repository at this point in the history
code reorganization for conda package
  • Loading branch information
ameenetemady authored Jul 9, 2021
2 parents 68d7168 + 5d0d461 commit f571e29
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
suppressPackageStartupMessages(library("argparse"))
library(stringr)

source("./src/common.R")
source("common_OMMs.R")

get_args <- function() {
parser <- ArgumentParser(description = "Use friendly food names instead of uids for the OMMs.")
Expand Down
2 changes: 1 addition & 1 deletion generate_OMMs.R → R/generate_OMMs.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ library(readxl)
library(stringr)
library(gurobi)

source("./src/common.R")
source("common_OMMs.R")
DEV_MODE <- FALSE

# Parse and return command line arguments of this script (return defaults if DEV_MODE is TRUE).
Expand Down
4 changes: 2 additions & 2 deletions select_OMMs.R → R/select_OMMs.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ library(ggplot2)
library(reshape2)
library(scales)

source("./src/common.R")
source("./src/theme_util.R")
source("common_OMMs.R")
source("theme_util_OMMs.R")
DEV_MODE <- FALSE

# Parse and return command line arguments of this script (return defaults if DEV_MODE is TRUE).
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions visualize_OMMs.R → R/visualize_OMMs.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ library(ggplot2)
library(reshape2)
library(scales)

source("./src/common.R")
source("./src/theme_util.R")
source("common.R")
source("theme_util.R")
DEV_MODE <- FALSE

# Parse and return command line arguments of this script (return defaults if DEV_MODE is TRUE).
Expand Down

0 comments on commit f571e29

Please sign in to comment.