Description Usage Arguments Value See Also Examples
At the moment, these objects can be converted to an
ExpressionSet
object directly by doing as.eset(x)
.
fpkm_counts
– object created by calling
ganalyse::gather_counts
on a fpkm_format
object.
raw_counts
– object created by calling
ganalyse::gather_counts
on a raw_format
object.
DGEList
– object created by calling edgeR::DGEList
function.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
x |
An object of class |
... |
Additional arguments specific to methods. |
groups |
columns in 'x' corresponding to the group each sample belongs to. |
An object of class ExpressionSet
.
rnaseq
, gather_counts
show_counts
limma_dge
edger_dge
construct_design
construct_contrasts
write_dge
as.dgelist
volcano_plot
density_plot
1 2 3 4 5 6 7 8 9 10 11 12 13 | path = system.file("tests", package="ganalyse")
# ----- fpkm ----- #
fpkm_path = file.path(path, "fpkm", "annotation.txt")
fpkm_obj = rnaseq(fpkm_path, format="fpkm", experiment="sample")
fpkm_counts = gather_counts(fpkm_obj, by="gene-id", log_base=2L)
(as.eset(fpkm_counts))
# ----- raw ----- #
raw_path = file.path(path, "raw", "annotation.txt")
raw_obj = rnaseq(raw_path, format="raw", experiment="sample")
raw_counts = gather_counts(raw_obj, by="gene-id", threshold=1L)
(as.eset(raw_counts))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.