Description Usage Arguments Details Value Author(s) See Also Examples
This function is used to load (sub-)exon count data. Exon count data can
be got by the Python script count_in_exons.py
.
1 | loadExonCountData(case.files, control.files)
|
case.files |
a character vector containing the exon count file names for case samples |
control.files |
a character vector containing the exon count file names for control samples |
You may need the Python script count_in_exons.py (released with this package)
to generate your exon count files from read mapping results (say BAM files).
The detailed usage can be obtained by simply typing
python \path\to\count_in_exons.py
. Users can also use other scripts or
software for exon read counting.
The format of the exon count file is:
1 2 3 4 5 6 |
This function returns a ReadCountSet object.
Xi Wang, xi.wang@newcastle.edu.au
newReadCountSet
,
ReadCountSet-class
1 2 3 4 5 6 7 8 9 10 11 12 | library(SeqGSEA)
dat.dir = system.file("extdata", package="SeqGSEA", mustWork=TRUE)
case.pattern <- "^SC"
ctrl.pattern <- "^SN"
case.files <- dir(dat.dir, pattern=case.pattern, full.names = TRUE)
control.files <- dir(dat.dir, pattern=ctrl.pattern, full.names = TRUE)
## Not run:
RCS <- loadExonCountData(case.files, control.files)
RCS
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.