getLocalMetaprobeIntensities package:GeneRegionScan R Documentation

_G_e_t _M_e_t_a_p_r_o_b_e _I_n_t_e_n_s_i_t_i_e_s _l_o_c_a_l_l_y

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

     Function that will create an expressionset from cel files.

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

             getLocalMetaprobeIntensities(celfilePath, analysis="rma", metaProbeSetsFile=NULL, annotation=NULL, aptProbesetSummarizePath=NULL,
             pgfPath=NULL, clfPath=NULL, cdfPath=NULL, verbose=TRUE)

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

celfilePath: The path to a folder that contains the cel files of
          interest.

analysis: The analysis string passed to Affymetrix Power Tools. "RMA"
          and "RMA-sketch" are recommended starting points. See APT
          documentation for complete list of possibilities.

metaProbeSetsFile: Path to a file containing meta probe set
          information. These can be downloaded from www.affymetrix.com
          and has names like HuEx\-1_0\-st\-v2.r2.dt1.hg18.full.mps.
          This choice also decides which subset of the meta probe sets
          that will be used: Core, Extended or Full.

annotation: Character string specifying which type of arrays is
          investigated.

aptProbesetSummarizePath: The path to the apt-probeset-summarize file
          from the Affymetrix Power Tools package (including the
          filename itself). You can try to leave it as NULL and see
          what happens. If you have specified the argument before it
          will be remembered.

 pgfPath: The path to a pgf file for the exon array of interest. This
          argument is mutually exclusive with the cdfPath argument.
          These files can be downloaded from www.affymetrix.com for the
          array of interest. Once given for a particular annotation,
          the location is saved for future use and can be given as NULL
          next time.

 clfPath: The path to a clf file for the exon array of interest. This
          argument is mutually exclusive with the cdfPath argument.
          These files can be downloaded from www.affymetrix.com for the
          array of interest. Once given for a particular annotation,
          the location is saved for future use and can be given as NULL
          next time.

 cdfPath: The path to a cdf file for the array of interest. This
          argument is mutually exclusive with the pgfPath and clfPath
          arguments. These files can be downloaded from
          www.affymetrix.com for the array of interest.  Once given for
          a particular annotation, the location is saved for future use
          and can be given as NULL next time.

 verbose: TRUE or FALSE.

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

     This function is a simple wrapper around Affymetrix Power Tools
     (APT). It is useful for importing meta probe set data from cel
     files to R environments. It will remember the location of
     annotation files, after the first use, which removes some of the
     typing otherwise included in using APT.

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

     An Expressionset with meta probe set values for all meta probes in
     the specified metaProbeSetFile.

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

     Lasse Folkersen

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

     'getLocalProbeIntensities', 'plotOnGene'

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

             ## Not run: 
             #must correct paths and give cel files before this example will work
             listOfProbesets<-c("10321_at")
             celfilePath<-path_to_some_cel_files
             aptProbesetSummarizePath<-"~/apt/apt-cel-extract"
             cdfPath<-"~/hgu133plus2.cdf"
             getLocalMetaprobeIntensities(celfilePath, annotation="hgu133plus2", aptProbesetSummarizePath=aptProbesetSummarizePath, cdfPath=cdfPath)
             
     ## End(Not run)

