Main CDS retrieval function for a set of organism of interest. By specifying the scientific names of the organisms of interest the corresponding fasta-files storing the CDS of the organisms of interest will be downloaded and stored locally. CDS files can be retrieved from several databases.
Usage
getCDSSet(
db = "refseq",
organisms,
reference = FALSE,
release = NULL,
gunzip = TRUE,
update = FALSE,
path = "set_CDS"
)
Arguments
- db
a character string specifying the database from which the genome shall be retrieved:
db = "refseq"
db = "genbank"
db = "ensembl"
- organisms
a character vector storing the names of the organisms than shall be retrieved. There are three available options to characterize an organism:
- reference
a logical value indicating whether or not a genome shall be downloaded if it isn't marked in the database as either a reference genome or a representative genome.
- release
a numeric, the database release version of ENSEMBL (
db = "ensembl"
). Default isrelease = NULL
meaning that the most recent database version is used.release = 75
would for human would give the stable GRCh37 release in ensembl. Value must be > 46, since ensembl did not structure their data if the standard format before that.- gunzip
a logical, indicating whether or not files should be unzipped.
- update
logical, default FALSE. Updated backend cached files needed. Usually keep this false, to make ut run much faster. Only set to TRUE, if you believe you cache is outdated (Species only exist in newest release etc)
- path
character, default location is paste0("set_", toupper(set_type))
Value
character vector, the file path to the downloaded genomes,
The returned character vector has names as either:
- 'new' (file was downloaded now)
- 'old' files did already exist)
Details
Fetching of assembly / sequence data is done by fetching an overview file
from metadata of given database:
For NCBI (refseq/genbank):
Internally this function loads the the overview.txt file from NCBI:
refseq: ftp.ncbi.nlm.nih.gov/genomes/refseq/
genbank: ftp.ncbi.nlm.nih.gov/genomes/genbank/
It will then create a directory relative to file type wanted,
if you get fasta genomes it will be
_ncbi_downloads/genomes' etc.
In case the corresponding fasta file already exists within the
'_ncbi_downloads/genomes' folder and is accessible within the workspace,
no download process will be performed.
For other file types the same rule applies.
For ensembl it fetches overview per type from the rest API:
ensembl: https://rest.ensembl.org
See also
Other getBioSet:
getBioSet()
,
getCollectionSet()
,
getGFFSet()
,
getGenomeSet()
,
getProteomeSet()
,
getRNASet()