transtruct | R Documentation |
transtruct uses alternative splicing information to find structures of transcripts generated in two conditions (usually control and treated). It can generate stuctures corresponding to multiple AS events in a gene at a time. These can be passed as a list or vector to ep.event or ip.event parameter. transtruct primarily requires RMM and iMM of the gene to find seed exons and extend them to form continuous paths of exons connected via flanking junctions.
transtruct(
ep.event = NULL,
ip.event = NULL,
Gcount = Gcount,
RMM,
iMM = NULL,
designM,
annotation,
Groups,
keep.intron = FALSE
)
ep.event |
list/vector of Cassette Exon event(s), for which Transcript Structure is required. (default = NULL) |
ip.event |
list/vector of Intron Retention event(s), for which Transcript Structure is required. (default = NULL) |
Gcount |
Gcount matrix of given geneID. Gcount matrix generated via |
RMM |
RMM of given geneID. readMembershipMatrix contains association of each exon with meta-features (exons, introns, skipping junctions and flanking junctions) of that gene. It is generated by |
iMM |
iMM of given geneID. intronMembershipMatrix contains association of each intron with meta-features (introns, exons and skipping junctions) of that gene. It is generated by |
designM |
design matrix required by edgeR. |
annotation |
annotation matrix of given geneID. annotation is generated by |
keep.intron |
if a cassette exon event is selected by ExonPointer due to flanking introns, instead of or along with flanking junction(s), retain intron in the transcript structure and propagate structure using that intron. logical. (default = FALSE) |
geneID |
geneID of the Cassette Exon and/or Intron Retention event(s). Only one geneID can be passed. |
list of three matrices:
numeric: transtruct.condition: It contains transcript structure(s) of given gene for corresponding Cassette Exon and/or Intron Retention event(s) (as specified by rownames), in the treated samples.
numeric: transtruct.normal: It contains transcript structure(s) of given gene for corresponding Cassette Exon and/or Intron Retention event(s) (as specified by rownames), in the normal/untreated samples.
numeric: expression: it contains expression values of meta-features in the given gene
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.