Description Usage Arguments Value Author(s) Examples
View source: R/FraserDataSet-class.R
Constructs an FRASER object based on the given input. It can take only the annotation (colData) or count tables (junctions/spliceSites).
1 | FraserDataSet(colData = NULL, junctions = NULL, spliceSites = NULL, ...)
|
colData |
A DataFrame containing the annotation of the samples |
junctions, spliceSites |
A data.frame like object containing the
raw counts for each junction or splice site.
It requires the columns |
... |
Any parameters corresponding to the slots and their possible values. See FraserDataSet |
A FraserDataSet object.
Christian Mertes mertes@in.tum.de
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | fraser <- FraserDataSet()
# example sample annoation
sampleTable <- fread(system.file("extdata",
"sampleTable_countTable.tsv", package="FRASER", mustWork=TRUE))
# get raw counts
junctionCts <- fread(system.file("extdata",
"raw_junction_counts.tsv.gz", package="FRASER", mustWork=TRUE))
spliceSiteCts <- fread(system.file("extdata",
"raw_site_counts.tsv.gz", package="FRASER", mustWork=TRUE))
# create FRASER object
fds <- FraserDataSet(colData=sampleTable, junctions=junctionCts,
spliceSites=spliceSiteCts, name="Example Dataset")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.