EventPointer_RNASeq_TranRef: EventPointer_RNASeq_TranRef

Description Usage Arguments Value Examples

View source: R/EventPointer_RNASeq_TranRef.R

Description

Statistical analysis of alternative splicing events with the output of GetPSI_FromTranRef

Usage

1
2
EventPointer_RNASeq_TranRef(Count_Matrix, Statistic = "LogFC", Design,
  Contrast)

Arguments

Count_Matrix

The list containing the expression data taken from the ouput of GetPSI_FromTranRef

Statistic

The type of statistic to apply. Default = 'LogFC' (can be 'logFC, 'Dif_LogFC','DRS')

Design

The design matrix of the experiment.

Contrast

The Contrast matrix of the experiment.

Value

a data.frame with the information of the names of the event, its p.values and the corresponding z.value. If there is more than one contrast, the function returns as many data.frames as number of contrast and all these data.frame are sotred in an unique list.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
   data(EventXtrans)
   data(PSIss)
   # Design and contrast matrix:

   Design <- matrix(c(1,1,1,1,0,0,1,1),nrow=4)
   Contrast <- matrix(c(0,1),nrow=2)

   # Statistical analysis:


   Fit <- EventPointer_RNASeq_TranRef(Count_Matrix =  PSIss$ExpEvs,
                                      Statistic = 'LogFC',Design = Design,
                                      Contrast = Contrast)

EventPointer documentation built on Nov. 8, 2020, 7:12 p.m.