runDNAcopy              package:snapCGH              R Documentation

_R_e_s_u_l_t_s _o_f _s_e_g_m_e_n_t_i_n_g _a_n _M_A_L_i_s_t _d_a_t_a _o_b_j_e_c_t _u_s_i_n_g _t_h_e _D_N_A_c_o_p_y _l_i_b_r_a_r_y

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

     The results of segmenting data from copy number array experiments
     from programs such as circular binary segmentation (CBS).  This
     function requires the library 'DNAcopy' to be loaded.

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

     runDNAcopy(MA, smooth.region=2, outlier.SD.scale = 4, smooth.SD.scale = 2, trim=0.025, alpha = 0.01, p.method = c("hybrid", 
         "perm"), kmax = 25, nmin = 200, window.size = NULL, overlap = 0.25, undo.splits = c("none", "prune", "sdundo"), 
         undo.prune = 0.05, undo.SD = 3)

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

      MA: An object of class 'MAList'

smooth.region: number of points to consider on the left and the right
          of a point to detect it as an outlier.

outlier.SD.scale: the number of SDs away from the nearest point in the
          smoothing region to call a point an outlier.

smooth.SD.scale: the number of SDs from the median in the smoothing
          region where a smoothed point is positioned.

    trim: proportion of data to be trimmed for variance calculation for
          smoothing outliers and undoing splits based on SD.

   alpha: significance levels for the test to accept change-points.

p.method: method used for p-value computation.  For the "perm" method
          the p-value is based on full permutation.  For the "hybrid"
          method the maximum over the entire region is split into
          maximum of max over small segments and max over the rest. 
          Approximation is used for the larger segment max. Default is
          hybrid.

    kmax: the maximum width of smaller segment for permutation in the
          hybrid method.

    nmin: the minimum length of data for which the approximation of
          maximum statistic is used under the hybrid method.

window.size: size of window used to speed up computations when segment
          size is too large.  Default is NULL (whole segment used). If
          p.method is hybrid then this is set to NULL.

 overlap: proportion of data that overlap for adjacent windows.

undo.splits: A character string specifying how change-points are to be
          undone, if at all.  Default is "none".  Other choices are
          "prune", which uses a sum of squares criterion, and "sdundo",
          which  undoes splits that are not at least this many SDs
          apart.

undo.prune: the proportional increase in sum of squares allowed when
          eliminating splits if undo.splits="prune".

 undo.SD: the number of SDs between means to keep a split if
          undo.splits="sdundo".

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

     The function returns an object of class 'SegList'

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

     Mike Smith, based upon DNAcopy help files written by E. S.
     Venkatraman and Adam Olshen

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

     'segment' 'MAList' 'runHomHMM' 'runGLAD' 'SegList'

