View source: R/event_dataframe.r View source: R/.ipynb_checkpoints/event_dataframe-checkpoint.r
event_dataframe | R Documentation |
event_dataframe creates a dataframe only with events
event_dataframe creates a dataframe connecting segments, events and the annotation.
event_dataframe(data, data_annotation)
data |
dataframe: the probe based data frame. |
data_annotation |
dataframe: the coordinates are extracted from gff3 |
The functions used are:
position_function: adds the specific position of ps or iTSS event.
annotation_function_event: adds the events to the annotated genes.
annotation file needs to be supplied. Strand is indicated in case of stranded data The event_dataframe selects columns with statistical features. ID, position, strand and TU columns are required.
A dataframe with unique intensity fragments
String, region annotation covering the fragments
String, gene annotation covering the fragments
String, locus_tag annotation covering the fragments
Boolean. The bin/probe specific strand (+/-)
String, The overarching transcription unit
Integer, position of the bin/probe on the genome
String, the bin/probe segment on the genome
String, the fragments subjected to fold change
Integer, the fold change value of 2 intensity fragments
Integer, p_value of the FC_intensity
String, the fragments subjected to fold change
Integer, the fold change value of 2 HL fragments
Integer, p_value of the FC_HL
String, fragments subjected to FC_HL/FC_intensity
Integer, the value of FC_HL/FC_intensity
Integer, the fold change of half-life/ fold change of intensity, position of the half-life fragment is adapted to intensity fragment
Integer, p_value of the event FC_HL/FC_intensity
Integer, the value correspomding to synthesis rate
String, the event assigned by synthesis rate either Termination or iTSS
Boolean, presence or absence of pausing_site event (ps)
Boolean, presence or absence of internal starting site event (iTSS_I)
String, fragments involved on the event ps or iTSS_I
Integer, the position middle between 2 fragments with an event
Integer, the duration between two delay fragments
Integer, the delay value of the bin/probe
The half-life of the bin/probe
The relative intensity at time point 0
Integer, the slope value of the fit through the respective delay fragment
Integer, the p_value added to the inp
if(!require(SummarizedExperiment)){
suppressPackageStartupMessages(library(SummarizedExperiment))
}
data(stats_minimal)
event_dataframe(data = stats_minimal,
data_annotation = metadata(stats_minimal)$annot[[1]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.