Skip to content

Commit

Permalink
helpful readout
Browse files Browse the repository at this point in the history
  • Loading branch information
colebrookson authored Oct 2, 2023
1 parent c658c3a commit 8c7929e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Code/02_1c_Format GenBank.R
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
# set up
library(tidyverse); library(magrittr); library(vroom); library(data.table)
if(!exists('vdict')) {source('Code/001_TaxizeFunctions.R')}
print("vdict")
if(!exists('jvdict')) {source('Code/001_Julia functions.R')}
print("jvdict")

temp <- data.frame(Host = character(),
Virus = character(),
Expand Down Expand Up @@ -41,7 +39,7 @@ temp <- data.frame(Host = character(),

# Attaching GenBank
gb <- vroom::vroom("Intermediate/Unformatted/GenBankUnformatted.csv.gz")
print("read in")
print("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 8c7929e

Please sign in to comment.