pickObjs              package:tkWidgets              R Documentation

_D_e_t_e_r_m_i_n_e _W_h_a_t _t_o _B_e _S_e_n_t _t_o _a _W_i_d_g_e_t

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

     This function takes a vector of object names and determines what
     will be sent to (e.g. the 'objectBrowser') widget for display
     based on the default and user input requirements.

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

     pickObjs(objNames, fun = function(x) TRUE)
     noAuto(x)

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

objNames: 'objNames' character vector with object names to be processed

     fun: 'fun' function checking the object names for satisfaction of
          certain requirement

       x: 'x' a character string for the name of an object

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

     Packages and environments are always displayed.

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

     Character vector of object names that satisfy the requirements.

_N_o_t_e:

     This function is part of the Bioconductor project at Dana-Farber
     Cancer Institute to provide Bioinformatics functionalities through
     R.

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

     Jianhua (John) Zhang

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

     'objectBrowser'

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

     # Returns names of package and environment objects in the search path.
     pickObjs(search())

