From 6ff42f73edde0f1f0a13dd5c6208dbd00453860e Mon Sep 17 00:00:00 2001 From: Cole Brookson Date: Mon, 2 Oct 2023 00:57:07 -0400 Subject: [PATCH] missing `paste0()` --- Code/02_1c_Format GenBank.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/02_1c_Format GenBank.R b/Code/02_1c_Format GenBank.R index 964345e..58cf545 100644 --- a/Code/02_1c_Format GenBank.R +++ b/Code/02_1c_Format GenBank.R @@ -39,7 +39,7 @@ temp <- data.frame(Host = character(), # Attaching GenBank gb <- vroom::vroom("Intermediate/Unformatted/GenBankUnformatted.csv.gz") -print("rows in genbank as of this run is: ", nrow(gb)) +print(paste0("rows in genbank as of this run is: ", nrow(gb))) gb %<>% dplyr::rename(NCBIAccession = 'Accession') %>% dplyr::rename(Release_Date = Release_Date) %>% # not sure what this is doing?