View source: R/EventPointer_RNASeq_TranRef_IGV.R
EventPointer_RNASeq_TranRef_IGV | R Documentation |
Generates of files to be loaded in IGV for visualization and interpretation of events detected from a reference transcriptome (see EventDetection_transcriptome).
EventPointer_RNASeq_TranRef_IGV(SG_List, pathtoeventstable, PathGTF)
SG_List |
List with the Splicing Graph information of the events. This list is created by EventDetection_transcriptome function. |
pathtoeventstable |
Complete path to the table returned by EventDetection_transcriptome that contains the information of each event, or table with specific events that the user want to load into IGV to visualize. |
PathGTF |
Directory where to write the GTF files. |
The function displays a progress bar to show the user the progress of the function. Once the progress bar reaches 100 file is written to the specified directory in PathGTF. The created file is named 'paths_RNASeq.gtf'.
###### example using all the events found in a reference transcriptome
data("EventXtrans")
SG_List <- EventXtrans$SG_List
PathEventsTxt<-system.file('extdata',package='EventPointer')
PathEventsTxt <- paste0(PathEventsTxt,"/EventsFound_Gencode24_2genes.txt")
PathGTF <- tempdir()
EventPointer_RNASeq_TranRef_IGV(SG_List = SG_List,pathtoeventstable = PathEventsTxt,PathGTF = PathGTF)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.