Skip to content

Commit

Permalink
Fix for failing ghactions
Browse files Browse the repository at this point in the history
Still need change for fixing global variables
  • Loading branch information
Schiano-NOAA committed Sep 27, 2024
1 parent c3cfd37 commit bc29dbd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ Imports:
stringr,
tidyr,
utils
Remotes:
Remotes:
nmfs-fish-tools/nmfspalette
2 changes: 1 addition & 1 deletion R/plot_recruitment.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ plot_recruitment <- function(dat,
}

if (model == "standard"){
output <- read.csv(dat)
output <- utils::read.csv(dat)
if (scaled) {
rec <- output |>
dplyr::filter(label == "recruitment",
Expand Down
2 changes: 1 addition & 1 deletion R/plot_spawning_biomass.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ plot_spawning_biomass <- function(dat,
}

if(model == "standard"){
output <- read.csv(dat)
output <- utils::read.csv(dat)
sb <- output |>
dplyr::filter(label == "spawning_biomass",
module_name == "DERIVED_QUANTITIES" | module_name == "t.series") |> # SS3 and BAM target module names
Expand Down
2 changes: 1 addition & 1 deletion R/table_indices.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
table_indices <- function(dat,
model = "standard"){
if (model == "standard"){
output <- read.csv(dat)
output <- utils::read.csv(dat)
output <- output |>
dplyr::filter(module_name == "INDEX_2" | module_name == "t.series")
if (any(unique(output$module_name=="INDEX_2"))) {
Expand Down
8 changes: 4 additions & 4 deletions man/plot_spawning_biomass.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bc29dbd

Please sign in to comment.