getProbeLevelAnnotationForExonArrayspackage:GeneRegionScanR Documentation

_G_e_t _P_r_o_b_e_L_e_v_e_l _A_n_n_o_t_a_t_i_o_n _f_o_r _E_x_o_n _A_r_r_a_y_s

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

     Internal function that will return exon probe sequence and probe
     id for all probes in a given list of probe sets.

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

         getProbeLevelAnnotationForExonArrays(vectorOfProbesets, pgfPath)

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

vectorOfProbesets: A character string with probeset IDs.

 pgfPath: The path of a pgf file for the exon array type of interest.
          Can be downloaded from www.affymetrix.com.

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

     This function makes a call to readPgf in the affxparser package to
     get the sequence information. The readPgf will then load the
     entire pgf file and that might be quite memory intensive. However
     it is not possible to extract the indices of the probeset names
     without doing this. The function is primarily intended to be
     called by getLocalProbeIntensities.

     The call to readPgf sometimes gives a is.na() warning. The reason
     for this is not known, but it does not seem to affect performance.

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

     A dataframe with a row for each probe in the submitted probeset.
     The columns with the names "probeset_name" and "sequence" contains
     this.

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

     Lasse Folkersen

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

     'readPgf', 'getLocalProbeIntensities', 'plotOnGene'

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

             ## Not run: 
             #must supply pgf file for this to work
             getProbeLevelAnnotationForExonArrays("43254543", pgfPath="~/somewhere/some.pgf")
             
     ## End(Not run)

