getGTF {biomartr} | R Documentation |
Genome Annotation Retrieval (GTF)
Description
Main retrieval function for GTF files of an organism of interest. By specifying the scientific name of an organism of interest the corresponding GTF file storing the annotation for the organism of interest can be downloaded and stored locally. GTF files can be retrieved from several databases.
Usage
getGTF(
db = "ensembl",
organism,
remove_annotation_outliers = FALSE,
path = file.path("ensembl", "annotation"),
release = NULL,
mute_citation = FALSE
)
Arguments
db |
a character string specifying the database from which the genome shall be retrieved:
|
organism |
Organism selector id, there are three options to characterize an organism:
|
remove_annotation_outliers |
shall outlier lines be removed from the input |
path |
a character string specifying the location (a folder) in which
the corresponding annotation file shall be stored. Default is
|
release |
a numeric, the database release version of ENSEMBL ( |
mute_citation |
logical, default FALSE, indicating whether citation message should be muted. |
Details
Internally this function loads the the overview.txt file from NCBI:
refseq: ftp://ftp.ncbi.nlm.nih.gov/genomes/refseq/
genbank: ftp://ftp.ncbi.nlm.nih.gov/genomes/genbank/
and creates a directory relative to file type, if you get fasta genomes it will be _ncbi_downloads/genomes'. 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.
Value
File path to downloaded genome.
Author(s)
Hajk-Georg Drost
See Also
Other getBio:
getBio()
,
getCDS()
,
getCollection()
,
getGenome()
,
getProteome()
,
getRNA()
Other gff:
getGFFSet()
,
read_gff()
Examples
## Not run:
# download the annotation of Homo sapiens from ensembl
# and store the corresponding genome file in 'ensembl/annotation'
getGTF(db = "ensembl",
organism = "Homo sapiens",
path = file.path("ensembl","annotation"))
getGTF(db = "ensembl",
organism = "Homo sapiens",
path = file.path("ensembl","annotation"),
assembly_type = "primary_assembly")
## End(Not run)