RangedDataList-class         package:IRanges         R Documentation

_L_i_s_t_s _o_f _R_a_n_g_e_d_D_a_t_a

_D_e_s_c_r_i_p_t_i_o_n:

     A formal list of 'RangedData' objects. Extends and inherits all
     its methods from 'TypedList'. One use case is to group together
     all of the samples from an experiment generating data on ranges.

_C_o_n_s_t_r_u_c_t_o_r:


      'RangedDataList(...)': Contatenates the 'RangedData' instances in
          '...' into a new 'RangedDataList'.


_A_u_t_h_o_r(_s):

     Michael Lawrence

_S_e_e _A_l_s_o:

     'RangedData', the element type of this 'TypedList'.

_E_x_a_m_p_l_e_s:

       ranges <- IRanges(c(1,2,3),c(4,5,6))
       a <- RangedData(IRanges(c(1,2,3),c(4,5,6)), score = c(10L, 2L, NA))
       b <- RangedData(IRanges(c(1,2,4),c(4,7,5)), score = c(3L, 5L, 7L))
       RangedDataList(sample1 = a, sample2 = b)

