getKingdomAssemblySummary {biomartr} | R Documentation |
Retrieve and summarise the assembly_summary.txt files from NCBI for all kingdoms
Description
Retrieval function of the assembly_summary.txt file from NCBI for all kingdoms. The assembly_summary.txt files store available species on NCBI.
Usage
getKingdomAssemblySummary(
db,
skip_bacteria = TRUE,
file = assemblies_info_path(db)
)
Arguments
db |
database name. E.g. |
skip_bacteria |
Due to its enormous dataset size (> 700MB as of July 2023),
the bacterial summary file will not be loaded by default anymore. If users
wish to gain insights for the bacterial kingdom they needs to actively specify |
file |
path, local path to total summary file, default is in tmp folder. |
Author(s)
Hajk-Georg Drost
See Also
getSummaryFile
, getMetaGenomeSummary
, get.ensembl.info
Examples
## Not run:
# This example will run the default version of this function
# whereby information for Bacteria are not downloaded
test <- getKingdomAssemblySummary(db = "genbank", skip_bacteria = TRUE)
test
# Users can then retrieve information for Bacteria by skip_bacteria = FALSE
test2 <- getKingdomAssemblySummary(db = "genbank", skip_bacteria = FALSE)
test2
## End(Not run)
[Package biomartr version 1.0.7 Index]