Skip to content

Commit

Permalink
missing paste0()
Browse files Browse the repository at this point in the history
  • Loading branch information
colebrookson authored Oct 2, 2023
1 parent 8c7929e commit 6ff42f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/02_1c_Format GenBank.R
Original file line number Diff line number Diff line change
Expand Up @@ -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?
Expand Down

0 comments on commit 6ff42f7

Please sign in to comment.