View-Reference-methods | R Documentation |
These functions allow users to construct tables containing SpliceWiz's reference of alternate splicing events, intron retention events, and other relevant data
viewASE(reference_path)
viewIR(reference_path, directional = TRUE)
viewIntrons(reference_path)
viewIR_NMD(reference_path)
viewExons(reference_path)
viewGenes(reference_path)
viewGO(reference_path)
viewProteins(reference_path)
viewTranscripts(reference_path)
reference_path |
The directory containing the SpliceWiz reference |
directional |
(default |
A data frame containing the relevant info. See details
viewASE()
: Outputs summary of alternative splicing
events constructed by SpliceWiz
viewIR()
: Outputs summary of assessed IRFinde-like
IR events, constructed by SpliceWiz
viewIntrons()
: Outputs summary of all introns from
the annotation, constructed by SpliceWiz
viewIR_NMD()
: Outputs information for every intron -
whether retention of the intron will convert the transcript to an NMD
substrate
viewExons()
: Outputs information for every exon
from the annotation.
viewGenes()
: Outputs information for every gene
from the annotation.
viewGO()
: Outputs information for every gene
from the annotation.
viewProteins()
: Outputs information for every
protein-coding exon from the annotation.
viewTranscripts()
: Outputs information for every
transcript from the annotation.
Build-Reference-methods
ref_path <- file.path(tempdir(), "Reference_withGO")
buildRef(
reference_path = ref_path,
fasta = chrZ_genome(),
gtf = chrZ_gtf(),
ontologySpecies = "Homo sapiens"
)
df <- viewASE(ref_path)
df <- viewIR(ref_path, directional = TRUE)
df <- viewIntrons(ref_path)
df <- viewIR_NMD(ref_path)
df <- viewExons(ref_path)
df <- viewGenes(ref_path)
df <- viewProteins(ref_path)
df <- viewTranscripts(ref_path)
df <- viewGO(ref_path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.