runGLAD               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 _a_C_G_H_L_i_s_t _d_a_t_a _o_b_j_e_c_t _u_s_i_n_g _t_h_e _G_L_A_D _l_i_b_r_a_r_y

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

     This function allows the detection of breakpoints in genomic
     profiles obtained by array CGH technology and affects a status
     (gain, normal or lost) to each clone.  It requires that the
     library 'GLAD' is loaded.

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

     runGLAD(input, smoothfunc="lawsglad", base=FALSE, sigma = NULL, bandwidth=10,
     round=2, lambdabreak=8, lambdacluster=8, lambdaclusterGen=40,
     type="tricubic", param=c(d=6), alpha=0.001, method="centroid",
     nmax=8, verbose=FALSE, ...)

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

   input: An object of class 'MAList' or 'SegList'

smoothfunc: Type of algorithm used to smooth 'LogRatio' by a piecewise
          constant function. Choose either 'lawsglad', 'aws' or 'laws'.

    base: If 'TRUE', the position of clone is the physical position
          onto the chromosome, otherwise the rank position is used.

   sigma: Value to be passed to either argument 'sigma2'    of' aws'
          function or 'shape' of 'laws'. If 'NULL', sigma is calculated
          from the data.

bandwidth: Set the maximal bandwidth 'hmax' in the 'aws' or  'laws'
          function. For example, if 'bandwidth=10' then the 'hmax'
          value is set to 10*X_N where X_N is the position of the last
          clone.

   round: The smoothing results are rounded or not depending on the
          'round' argument. The 'round' value is passed to the argument
          'digits' of the 'round' function.

lambdabreak: Penalty term (lambda') used during the  *Optimization of
          the number of breakpoints* step.

lambdacluster: Penalty term (lambda*) used during the *MSHR clustering
          by chromosome* step.

lambdaclusterGen: Penalty term (lambda*) used during the *HCSR
          clustering throughout the genome* step.

    type: Type of kernel function used in the penalty term during the
          *Optimization of the number of breakpoints* step, the *MSHR
          clustering by chromosome* step and the *HCSR clustering
          throughout the genome* step.

   param: Parameter of kernel used in the penalty term.

   alpha: Parameter for ?????.

  method: The agglomeration method to be used during the *MSHR
          clustering by chromosome* and the *HCSR clustering throughout
          the genome* clustering steps.

    nmax: Maximum number of clusters (N*max) allowed during the the
          *MSHR clustering by chromosome* and the *HCSR clustering
          throughout the genome* clustering steps.

 verbose: If 'TRUE' some information are printed

     ...: 

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

     For a detailed explanation of the GLAD algorithm please see the
     relevant section of the GLAD manual: 'glad'

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

     The function returns an object of class 'SegList'

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

     'glad' 'MAList' 'runHomHMM' 'runDNAcopy' 'SegList'

