Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/94_makeNewAnnotationPackage.R
Short description string here
| 1 2 | makeNewAnnotationPackage(alignment.dir, Annotation, outputDir, level,
  min_probe_number, quiet = FALSE, pkgNameSUFFIX, fastaDir)
 | 
| alignment.dir | path to the directory that contains alignment files | 
| Annotation | regerence genome annotation  | 
| outputDir | output directory | 
| level | character string, can take values "gene" or "transcript", specifying if new probe sets should be formed per gene or per transcript | 
| min_probe_number | numeric, minimal number or probes in a probe set | 
| quiet | logical | 
| pkgNameSUFFIX | character, suffix to the package name, usually starts with dor: '.hereIsYourSuffix' | 
Long description string
a "output type".
Vladislava Milchevskaya milchv@gmail.com
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | data("Alignments_class_example")
data("Annotation_example")
data("seed_example")
alignmentDir <- 
  unlist(strsplit(dir(system.file("extdata",package="pdProbeRemap"), 
                      pattern="example_drosophila.Aligned.out.sam",
                      full.names=TRUE), split = "example_drosophila.Aligned.out.sam"))[1]
outputDir_example = system.file("data", package = "pdProbeRemap")
## Not run: 
makeNewAnnotationPackage(alignment.dir = alignmentDir, 
                         Annotation = Annotation_example, 
                         outputDir = outputDir_example, 
                         level = "gene", 
                         min_probe_number = 1, 
                         pkgNameSUFFIX = ".example")
                         
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.