bicluster               package:BicARE               R Documentation

_E_x_t_r_a_c_t _a _b_i_c_l_u_s_t_e_r

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

     Extract a bicluster from an object of class biclustering

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

     bicluster(biclustering, k, graph=TRUE)

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

biclustering: an object of class "biclustering" created by function
          'FLOC'

       k: the number of the bicluster considered in the "biclustering"
          object

   graph: boolean, indicating whether the graph should be plotted or
          not

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

     Returns the bicluster as a matrix with the genes on rows and the
     samples on columns. Result matrix is of class "bicluster". The
     "graph" option allows to plot the expression profiles of the genes
     across the conditions in the bicluster.

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

     Pierre Gestraud

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

     ### extract the first bicluster
     data(sample.biclustering)
     sample.biclustering
     bic <- bicluster(sample.biclustering, 1, graph=TRUE)
     plot(bic)

