channel               package:Biobase               R Documentation

_C_r_e_a_t_e _a _n_e_w _E_x_p_r_e_s_s_i_o_n_S_e_t _i_n_s_t_a_n_c_e _b_y _s_e_l_e_c_t_i_n_g _a _s_p_e_c_i_f_i_c _c_h_a_n_n_e_l

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

     This generic function extracts a specific element from an object,
     returning a instance of ExpressionSet.

_U_s_a_g_e:

     channel(object, name, ...)

_A_r_g_u_m_e_n_t_s:

  object: An S4 object, typically derived from class 'eSet'

    name: A (length one) character vector channel names.

     ...: Additional arguments.

_V_a_l_u_e:

     Instance of class 'ExpressionSet'.

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

     Biocore

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

     obj <- new("NChannelSet",
                R=matrix(runif(100), 20, 5),
                G=matrix(runif(100), 20, 5))
     ## G channel as ExpressionSet
     channel(obj, "G")
       

