addManifest           package:BeadExplorer           R Documentation

_A_d_d _a_n_n_o_t_a_t_i_o_n _d_a_t_a

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

     Adds gene annotation data to a matrix of expression values.

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

     addManifest(data, manifest, verbose = TRUE)

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

    data: Object of class 'matrix'

manifest: A data.frame of manifest annotation data, as produced by
          'readManifest'

 verbose: Logical, indicating whether to output confirmation 

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

     This function adds annotation information to a matrix of
     expression data, for example as derived from the  exprs slot of a
     'beadData-class' object.  The function uses the "Target" column of
     the manifest 'data.frame'  to merge the annotation data with
     'row.names' of the expression matrix.

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

     A 'data.frame' of expression intensities with annotation data

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

     Gareth Elvidge gareth.elvidge@well.ox.ac.uk

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

     ## Not run: 
     data (examplebeadData)
     expdata<-exprs (examplebeadData)
     man<-readManifest ("d:\Bead_Set_Manifest\Human_WG-6.csv")
     expannot<-addManifest(expData, man)

     ## End(Not run)

