Description Usage Arguments Details Value Author(s) Examples
View source: R/makeOrgPackageFromNCBI.R
The makeOrgPackageFromNCBI
function allows the user to make an
organism package from NCBI annotations available from the NCBI.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
version |
Package version in 'x.y.z' format. |
maintainer |
Package maintainer followed by email |
author |
Creator of package. |
outputDir |
Path where the package source should be assembled. |
tax_id |
The Taxonomy ID that represents the organism. |
genus |
Single string indicating the genus. |
species |
Single string indicating the species. |
NCBIFilesDir |
When a path is given, the files used to create the DB are saved locally. |
databaseOnly |
When TRUE, a DB is created without the package infrastructure. Used for OrgDb packages hosted on AnnotationHub. |
useDeprecatedStyle |
Legacy support for older package style with bimaps. |
rebuildCache |
When TRUE, the files used to create the DB are refreshed
(i.e., re-downloaded) if the timestamp is greater than 24 hours old. When
FALSE, the temporary NCBI.sqlite DB and final package are re-generated
from local files in |
verbose |
When TRUE, status messages are printed. |
makeOrgPackageFromNCBI
downloads multiple files and assembles a 12 GB
database in NCBIFilesDir
. The first time the function is run it may
take over an hour; subsequent calls reuse files from the cache and are
much faster. The default behavior of makeOrgPackageFromNCBI
attempts to
refresh the cached files each day (suppress with rebuildCache = FALSE
).
Nothing returned to the R session. Just creates an organism annotation package.
M. Carlson
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
## Makes an organism package for Zebra Finch from NCBI:
makeOrgPackageFromNCBI(version = "0.1",
author = "Some One <so@someplace.org>",
maintainer = "Some One <so@someplace.org>",
outputDir = ".",
tax_id = "59729",
genus = "Taeniopygia",
species = "guttata")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.