Description Usage Arguments Details Examples
View source: R/makeProbePackage.R
Make a package with probe sequence related data for microarrays
1 2 3 4 5 6 7 8 9 |
arraytype |
Character. Name of array type (typically a vendor's name like "HG-U133A"). |
importfun |
Character. Name of a function that can read the
probe sequence data e.g. from a file. See
|
maintainer |
Character. Name and email address of the maintainer. |
version |
Character. Version number for the package. |
species |
Character. Species name in the format Genus\_species (e.g., Homo\_sapiens) |
pkgname |
Character. Name of the package. If missing, a name is
created from |
outdir |
Character. Path where the package is to be written. |
quiet |
Logical. If |
check |
Logical. If |
build |
Logical. If |
unlink |
Logical. If |
... |
Further arguments that get passed along to |
See vignette.
Important note for Windows users: Building and checking packages requires some tools outside of R (e.g. a Perl interpreter). While these tools are standard with practically every Unix, they do not come with MS-Windows and need to be installed separately on your computer. See http://www.murdoch-sutherland.com/Rtools. If you just want to build probe packages, you will not need the compilers, and the "Windows help" stuff is optional.
1 2 3 4 5 6 7 8 9 10 11 12 | filename <- system.file("extdata", "HG-U95Av2_probe_tab.gz",
package="AnnotationDbi")
outdir <- tempdir()
me <- "Wolfgang Huber <huber@ebi.ac.uk>"
makeProbePackage("HG-U95Av2",
datafile = gzfile(filename, open="r"),
outdir = outdir,
maintainer = me,
version = "0.0.1",
species = "Homo_sapiens",
check = FALSE)
dir(outdir)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.