mergeProfilesLists        package:goProfiles        R Documentation

_C_o_m_b_i_n_e_s _t_w_o _l_i_s_t_s _o_f _p_r_o_f_i_l_e_s _i_n_t_o _o_n_e

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

     Combines two lists of profiles, that is two lists with three
     components,  'MF', 'BP', 'CC' into a single one.

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

     mergeProfilesLists(profilesList1, profilesList2, emptyCats = F, profNames = NULL)

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

profilesList1: First list to combine

profilesList2: Second list to combine

emptyCats: Boolean. Set to TRUE if there are empty categories that
          should be accounted for in any of the profiles

profNames: Names for the profiles (optional). If missing they are set
          to 'Frequency-1', 'Frequency-2',etc.

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

     A list of profiles with more than one column each.

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

     Alex Sanchez

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

     data(sampleProfiles)
     merged<-mergeProfilesLists (basicSingh01, basicWelsh01, profNames=c('Welsh','Singh'))

