A function takes an existing TimeSeriesObject and adds the specified example data to the object. Added data is the count matrix and sample data

TS_load_example_data(time_object)

Arguments

time_object

A timeseries object

Value

The timeseries object with the raw count matrix added to it as well as the sample data

Examples



TS_object <- new('TimeSeries_Object',
                 group_names=c('IgM','LPS'),group_colors=c("#e31a1c","#1f78b4"),DE_method='DESeq2',
                 DE_p_filter='padj',DE_p_thresh=0.05,DE_l2fc_thresh=1,
                 PART_l2fc_thresh=4,sem_sim_org='org.Hs.eg.db',Gpro_org='hsapiens')
TS_object <- TS_load_example_data(TS_object)