Description Usage Arguments Details Value Examples
View source: R/SummarizedExperiment_helpers.R
Make a summerizedExperiment / matrix object from bam files
1 2 3 4 5 6 7 8 9 10 | makeSummarizedExperimentFromBam(
df,
saveName = NULL,
longestPerGene = TRUE,
geneOrTxNames = "tx",
region = "mrna",
type = "count",
lib.type = "ofst",
weight = "score"
)
|
df |
an ORFik |
saveName |
a character (default NULL), if set save experiment to path given. Always saved as .rds., it is optional to add .rds, it will be added for you if not present. Also used to load existing file with that name. |
longestPerGene |
a logical (default TRUE), if FALSE all transcript isoforms per gene. |
geneOrTxNames |
a character vector (default "tx"), should row names keep trancript names ("tx") or change to gene names ("gene") |
region |
a character vector (default: "mrna"), make raw count matrices
of whole mrnas or one of (leaders, cds, trailers).
Can also be a |
type |
default: "count" (raw counts matrix), alternative is "fpkm", "log2fpkm" or "log10fpkm" |
lib.type |
a character(default: "default"), load files in experiment or some precomputed variant, either "ofst", "bedo", "bedoc" or "pshifted". These are made with ORFik:::convertLibs() or shiftFootprintsByExperiment(). Can also be custom user made folders inside the experiments bam folder. |
weight |
numeric or character, a column to score overlaps by. Default "score", will check for a metacolumn called "score" in libraries. If not found, will not use weights. |
If txdb or gtf path is added, it is a rangedSummerizedExperiment NOTE: If the file called saveName exists, it will then load file, not remake it!
a SummarizedExperiment
object or data.table if
"type" is not "count, with rownames as transcript / gene names.
1 2 3 4 5 6 7 | ##Make experiment
df <- ORFik.template.experiment()
# makeSummarizedExperimentFromBam(df)
# Only cds (coding sequences):
# makeSummarizedExperimentFromBam(df, region = "cds")
# FPKM instead of raw counts on whole mrna regions
# makeSummarizedExperimentFromBam(df, type = "fpkm")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.