cdfAddPlasqTypes         package:affxparser         R Documentation

_A_d_d_s _t_h_e _P_L_A_S_Q _t_y_p_e_s _f_o_r _t_h_e _p_r_o_b_e_s _i_n _a _C_D_F _s_t_r_u_c_t_u_r_e

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

     Adds the PLASQ types for the probes in a CDF structure.

     This 'function' is design to be used with 'applyCdfGroups'() on an
     Affymetrix Mapping (SNP) CDF 'list' structure.

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

     cdfAddPlasqTypes(groups, ...)

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

  groups: A 'list' structure with groups. Each group must contain the
          fields 'tbase', 'pbase', and 'expos'. 

     ...: Not used.

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

     This function identifies the number of nucleotides (bases) in
     probe sequences that mismatch the the target sequence for allele A
     and the allele B, as used by PLASQ [1], and adds an integer [0,15]
     interepreted as one of 16 probe types.  In PLASQ these probe types
     are referred to as: 0=MMoBR, 1=MMoBF, 2=MMcBR, 3=MMcBF, 4=MMoAR,
     5=MMoAF, 6=MMcAR, 7=MMcAF, 8=PMoBR, 9=PMoBF, 10=PMcBR, 11=PMcBF,
     12=PMoAR, 13=PMoAF, 14=PMcAR, 15=PMcAF.

     Pseudo rule for finding out the probe-type value:

        *  PM/MM: For MMs add 0, for PMs add 8.

        *  A/B: For Bs add 0, for As add 4.

        *  o/c: For shifted (o) add 0, for centered (c) add 2.

        *  R/F: For antisense (R) add 0, for sense (F) add 1.

     Example: (PM,A,c,R) = 8 + 4 + 2 + 0 = 14 (=PMcAR)

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

     Returns a 'list' structure with the same number of groups as the
     'groups' argument.  To each group, one fields is added:

plasqType: A 'vector' of 'integer's in [0,15].


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

     Henrik Bengtsson (<URL: http://www.braju.com/R/>)

_R_e_f_e_r_e_n_c_e_s:

     [1] LaFramboise T, Weir BA, Zhao X, Beroukhim R, Li C, Harrington
     D, Sellers WR, and Meyerson M. _Allele-specific amplification in
     cancer revealed by SNP array analysis_, PLoS Computational
     Biology, Nov 2005, Volume 1, Issue 6, e65.

