I am currently taking a datacamp course on the bioconductor package. There’s a section where you use the zika genome using the BioStrings package. I’m wondering where I could load this variable? The course says the genome was downloaded from https://www.ncbi.nlm.nih.gov/nuccore/NC_012532.1. Inside of datacamp if I do dput(zikaVirus) (the variable in the session is zikaVirus I get
new("DNAStringSet", pool = new("SharedRaw_Pool", xp_list = list(
<pointer: (nil)>), .link_to_cached_object_list = list(<environment>)),
ranges = new("GroupedIRanges", group = 1L, start = 1L, width = 10794L,
NAMES = "NC_012532.1 Zika virus isolate ZIKV/Monkey/Uganda/MR766/1947, complete genome",
elementType = "ANY", elementMetadata = NULL, metadata = list()),
elementType = "DNAString", elementMetadata = NULL, metadata = list())
which I can’t use in R to recreate the variable.