segChrom             package:tilingArray             R Documentation

_F_i_t _a _p_i_e_c_e_w_i_s_e _c_o_n_s_t_a_n_t _c_u_r_v_e _t_o _a_l_o_n_g _c_h_r_o_m_o_s_o_m_e _d_a_t_a (_w_r_a_p_p_e_r _f_u_n_c_t_i_o_n)

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

     Wrapper around the 'segment' function for each strand of one or
     more chromosomes specified by the user. It does some typical
     preprocessing and I/O.

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

     segChrom(y, probeAnno, chr=1:17, strands=c("+", "-"), 
       nrBasesPerSegment = 1500, maxk = 3000, step = 7, confint = FALSE,
       confintLevel = 0.95, useLocks=TRUE, verbose=TRUE, savedir)

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

       y: ExpressionSet or matrix containing the data to be segmented.

probeAnno: environment with probe annotations. See package
          'davidTiling' for an example (?probeAnno).

     chr: integer scalar or vector specifying which chromosome(s) to
          segment.

 strands: character scalar or vector specifying which strands to
          segment.

nrBasesPerSegment: integer (length 1): the parameter 'maxseg' of the
          'segment' function is calculated as the length of the
          chromosome divided by 'nrBasesPerSegment'. Thus, it
          determines the average segment length in the finest
          segmentation.

    maxk: passed on to  the function 'segment'.

    step: integer scalar, indicating the minimum distance between
          consecutive probes. In cases when probes are offset by less
          than 'step' bases, the probes are sampled to achieve the
          desired spacing.

 confint: logical scalar.  If 'TRUE', confidence intervals for each
          change-point are calculated.

confintLevel: numeric scalar between 0 and 1 indicating the probability
          level for the confidence intervals that are calculated for
          each change-point.

useLocks: logical scalar. Should a file locking mechanism be used that
          allows for a simple-minded parallelization of this function.

 verbose: logical scalar. Should we be chatty about our progress?

 savedir: character scalar. If specified, resulting 'segmentation'
          objects are saved (with 'save') to this directory.

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

     This function is a wrapper for the 'segment' function. Refer to
     its help page for further details.

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

     An environment containing S4 objects of class '"segmentation"'
     called "1.+", "1.-", etc. (depending on the values in 'chr' and
     'strands'), where "+" and "-" indicate the strand and the
     preceding number refers to the chromosome. If 'savedir' is
     specified, there is also the side-effect that a series of files
     "1.+.rda", "1.-.rda", etc. is saved in that directory.

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

     Matt Ritchie <ritchie@ebi.ac.uk> and Wolfgang Huber
     <huber@ebi.ac.uk>

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

     ## Not run: 
       library("davidTiling")
       data("davidTiling")
       data("probeAnno")
       isDNA = seq(1:3)
       yn = normalizeByReference(davidTiling[,-isDNA],davidTiling[,isDNA], probeAnno=probeAnno)
       seg = segChrom(yn, probeAnno) ## this will take a while to run!
     ## End(Not run)

