plotSummaryProfile           package:aCGH           R Documentation

_p_l_o_t_S_u_m_m_a_r_y_P_r_o_f_i_l_e

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

     This function display the genomic events and tests for the
     differences between groups if they are specified.

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

     plotSummaryProfile(aCGH.obj,
                        response = as.factor(rep("All", ncol(aCGH.obj))),
                        titles = unique(response[!is.na(response)]),
                        X = TRUE, Y = FALSE, maxChrom = 23,
                        chrominfo = human.chrom.info.Jul03,
                        num.plots.per.page = length(titles),
                        factor = 2.5, posThres=100, negThres=-0.75)

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

aCGH.obj: an object of aCGH class.

response: phenotype to compare. defaults to all the samples being
          analyzed together. 

  titles: titles for the groups, defaults to the name of the 'response' 

       X: logical indicating whether X needs to be shown 

       Y: logical indicating whether Y needs to be shown 

maxChrom: this parameter controls how many chromosomes will be plotted,
          from 1 to maxChrom

chrominfo: a chromosomal information associated with the mapping of the
          data 

num.plots.per.page: number of frequency plots per page. Default is the
          number of groups 

  factor: 'factor' specifies the number by which experimental
          variability should be multiples. Used only when tumor
          specific variability in 'aCGH.obj' is not NULL. Defaults to
          2.5

posThres: Threshold for gain. Set very high for homozygous deletion

negThres: Threshold for homozygous deletion

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

     This function utilizes output of the 'find.genomic.events' by
     plotting it and testing between groups. The test are performed
     using kruskal-wallis rank test.

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

     'aCGH' 'find.genomic.events'

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

     data(colorectal)

     ## Plotting summary of the sample profiles
     plotSummaryProfile(colorectal)

