Learn R Programming

isomiRs (version 1.0.3)

IsomirDataSeq-class: Class that contains all isomiRs annotation for all samples

Description

The IsomirDataSeq is a subclass of SummarizedExperiment used to store the raw data, intermediate calculations and results of an miRNA/isomiR analysis. This class stores all raw isomiRs data for each sample, processed information, summary for each isomiR type, raw counts, normalized counts, and table with experimental information for each sample.

Arguments

Details

IsomirDataSeqFromFiles creates this object using seqbuster output files.

Methods for this objects are counts to get count matrix and isoSelect for miRNA/isomiR selection. Functions available for this object are isoCounts for count matrix creation, isoNorm for normalization, isoDE for differential expression and isoPLSDA for clustering. isoPlot helps with basic expression plot.

metadata contains two lists: rawList is a list with same length than number of samples and stores the input files for each sample; isoList is a list with same length than number of samples and stores information for each isomiR type summarizing the different changes for the different isomiRs (trimming at 3', trimming a 5', addition and substitution). For instance, you can get the data stored in isoList for sample 1 and 5' changes with this code metadata(ids)[['isoList']][[1]]$t5sum.

Examples

Run this code
path <- system.file("extra", package="isomiRs")
fn_list <- list.files(path, full.names = TRUE)
de <- data.frame(row.names=c("f1" , "f2"), condition = c("newborn", "newborn"))
ids <- IsomirDataSeqFromFiles(fn_list, design=de)

head(counts(ids))

Run the code above in your browser using DataLab