Description Usage Arguments Value Author(s) See Also Examples
View source: R/RatioFromFPKM.R
With the FPKM expression data set of transcripts, this function estimates relative expression ratio between transcripts with and without alternatively spliced exons based on splicing models of the ASdb object
1 2 |
GTFdb |
A TxDb object in the GenomicFeatures package. |
ASdb |
A ASdb object including "SplicingModel" slot from the |
Total.expdata |
A data frame of expression data. |
CalIndex |
An index number in the ASdb object which will be tested in this function. |
Ncor |
The number of cores for multi-threads function. |
out.dir |
An output directory. |
ASdb with the slot (labeled by "Ratio") containing results from the the RatioFromFPKM
function. The "Ratio" slot contains a list object and each element of the list object returns the results assigned to three elements, which is of each alternative splicing type (i.e. Exon skipping, Alternative splice site, Intron retention). Three elements are as follows;
ES |
A data frame for the result of Exon skipping, consisting of the columns named as follows; Index (index number), EnsID (gene name), Nchr (chromosome name), 1stEX (alternatively spliced target exon), 2ndEX (second alternatively spliced target exon which is the other one of the mutually exclusive spliced exons), DownEX (downstream exon range), UpEX (upstream exon range), Types (splicing type), and names of individuals. |
ASS |
A data frame for the result of Alternative splice sites, consisting of the columns named as follows; Index (index number), EnsID (gene name), Nchr (chromosome name), ShortEX (shorter spliced target exon), LongEX (longer spliced target exon), NeighborEX (neighboring down or upstream exons), Types (splicing type), and names of individuals. |
IR |
A data frame for the result of Intron retention, consisting of the columns named as follows; Index (index number), EnsID (gene name), Nchr (chromosome name), RetainEX (retained intron exon), DownEX (downstream exon range), UpEX (upstream exon range), Types (splicing type), and names of individuals. |
Seonggyun Han, Sangsoo Kim
isActiveSeq
,
seqinfo
,
Splicingfinder
1 2 3 4 5 | sampleDB <- system.file("extdata", "sampleDB", package="IVAS")
sample.Txdb <- loadDb(sampleDB)
data(sampleexp)
ASdb <- Splicingfinder(sample.Txdb)
ASdb <- RatioFromFPKM(sample.Txdb,ASdb,sampleexp)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.