Description Usage Arguments Value Examples
Map the data from 5' profiling techniques
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18  | 
CSobject | 
 An object of class   | 
genomeIndex | 
 character. Path to the Subread index file. Should end with the basename of the index.  | 
outdir | 
 character. Output directory path  | 
externalGTF | 
 character. provide external annotation file in 'GTF' format , if present to increase alignment accuracy  | 
ncores | 
 integer. Number of cores/threads to use for mapping.  | 
logfile | 
 character. A log file to write the processing message.  | 
modified CapSet object with mapping information. Mapped and sorted BAM files are saved in 'outdir'.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  | ## Not run: 
# before mapping :
# 1. Create a CapSet object
# 2. de-multiplex the fastqs
# load a previously saved CapSet object
cs <- exampleCSobject()
# map the data (not available on windows)
library(Rsubread)
dir.create("bam")
buildindex(basename = "dm6", reference = "/path/to/dm6_genome.fa")
cs <- mapCaps(cs, genomeIndex = "dm6", outdir = "bam", nthreads = 10)
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.