selectTerms            package:goCluster            R Documentation

_A _f_u_n_c_t_i_o_n _t_o _s_e_l_e_c_t _i_n_t_e_r_e_s_t_i_n_g _a_n_n_o_t_a_t_i_o_n _t_e_r_m_s _w_i_t_h _t_h_e
_a_s_s_o_c_i_a_t_e_d _g_e_n_e_s _f_r_o_m _a _g_o_C_l_u_s_t_e_r _o_b_j_e_c_t

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

     This function will retrieve the data for the given annotation
     terms from a 'goCluster'-object.

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

     selectTerms(goCluster, terms)

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

goCluster: An object of class 'goCluster' with an object of class
          'clusterVisualHeatmap' as visualization method.

   terms: The annotation terms that should be returned.

_D_e_t_a_i_l_s:

     The heatmap visualization method will store the identified
     annotation terms in a tree that matches the clustering tree. The
     'selectTerms'-function facilitates the retrieval of specified
     annotation terms from this tree.

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

     A list of elements named according to the annotation terms.

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

     set.seed(1000)

     data(benomylsetupsmall)

     benomylsetupsmall$classvisu <- "clusterVisualHeatmap"

     a <- new("goCluster")

     execute(a) <- benomylsetupsmall

     selectTerms(a, "GO:0003735")

