From d06f0adc9b3abd0fa85f1f48af1d8a3472eaecf9 Mon Sep 17 00:00:00 2001 From: Sean Lucey Date: Thu, 30 Nov 2023 13:57:26 -0500 Subject: [PATCH] Missed a typo --- R/process_foreign_data.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/process_foreign_data.R b/R/process_foreign_data.R index 041b5cc..d846768 100644 --- a/R/process_foreign_data.R +++ b/R/process_foreign_data.R @@ -117,7 +117,7 @@ process_foreign_data <- function(channel, nafoland, useLanded = T, useHerringMai nafoland <- nafoland[!is.na(NESPP3), ] #Convert scallops to meat weight - if(useLanded) nafoland[NESPP3 == 800, SPPLIVMT := SPPLIVMT / 8.33], ] + if(useLanded) nafoland[NESPP3 == 800, SPPLIVMT := SPPLIVMT / 8.33] #Remove herring catch - if pulling using comlandr::get_herring_data() if(useHerringMaine) nafoland <- nafoland[NESPP3 != 168, ]