getGFF | R Documentation |
Main retrieval function for GFF files of an organism of interest. By specifying the scientific name of an organism of interest the corresponding gff file storing the annotation for the organism of interest can be downloaded and stored locally. GFF files can be retrieved from several databases.
getGFF(
db = "refseq",
organism,
reference = FALSE,
skip_bacteria = TRUE,
release = NULL,
gunzip = FALSE,
remove_annotation_outliers = FALSE,
path = file.path("_ncbi_downloads", "annotation"),
mute_citation = FALSE,
format = "gff3"
)
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:
|
reference |
a logical value indicating whether or not a genome shall be a candidate for downloaded if it isn't marked in the database as either a reference genome or a representative genome. This is helpful if you don't want to allow "partial genomes" etc. |
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 |
release |
a numeric, the database release version of ENSEMBL ( |
gunzip |
a logical, indicating whether or not files should be unzipped. |
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
|
mute_citation |
logical, default FALSE, indicating whether citation message should be muted. |
format |
"gff3", alternative "gtf" for ensembl. |
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
File path to downloaded genome.
Hajk-Georg Drost
Other getBio:
getBio()
,
getCDS()
,
getCollection()
,
getGenome()
,
getProteome()
,
getRNA()
Other gff:
getGFFSet()
,
read_gff()
## Not run:
# Simple and small yeast download from refseq
getGFF( db = "refseq", organism = "Saccharomyces cerevisiae",
path = tempdir(), mute_citation = TRUE)
# download the annotation of Arabidopsis thaliana from refseq
# and store the corresponding genome file in '_ncbi_downloads/annotation'
Athal_gff <- getGFF( db = "refseq",
organism = "Arabidopsis thaliana",
path = file.path("_ncbi_downloads","annotation"),
remove_annotation_outliers = TRUE)
Athal_gff_import <- read_gff(Athal_gff)
# download the genome of Arabidopsis thaliana from genbank
# and store the corresponding genome file in '_ncbi_downloads/annotation'
Athal_gff <- getGFF( db = "genbank",
organism = "Arabidopsis thaliana",
path = file.path("_ncbi_downloads","annotation"),
remove_annotation_outliers = TRUE)
Athal_gff_import <- read_gff(Athal_gff)
# download the genome of Homo sapiens from ensembl
# and store the corresponding genome file in '_ncbi_downloads/annotation'
Hsap_gff <- getGFF( db = "ensembl",
organism = "Homo sapiens",
path = file.path("_ncbi_downloads","annotation"),
remove_annotation_outliers = TRUE)
Hsap_gff_import <- read_gff(Hsap_gff)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.