alleleSummary          package:GeneticsBase          R Documentation

_S_u_m_m_a_r_y _o_f _a_l_l_e_l_e _i_n_f_o_r_m_a_t_i_o_n

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

     Summary of allele information.

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

     alleleSummary(object, 
                   by = NULL, 
                   confidence = 0.95, 
                   alpha = 1 - confidence, 
                   show = TRUE, 
                   verbose = FALSE, 
                   includeOverall = FALSE, 
                   omitRepeats = TRUE, 
                   ...)

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

  object: geneSet object  

      by: optional column name, by which the summary is desired.
          Default is NULL.  

confidence: confidence intervals of Genotype frequencies within each
          marker (default is 95%) 

   alpha: Type -1 error rate = (1- confidence)

    show: No longer used  

 verbose: Logical value (TRUE/FALSE), showing whether every 50th marker
          should be printed, default = FALSE 

includeOverall: logical value (TRUE/FALSE) indicating whether overall
          summary is also needed, default = FALSE  

omitRepeats: logical value (TRUE/FALSE) indicating whether Gene name
          and marker name should be printed repeatedly for each
          Genotype, default = TRUE 

     ...: Optional arguments

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

     Nitin Jain nitin.jain@pfizer.com

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

     library(GeneticsBase)
     data(CAMP)

     temp <- alleleSummary(CAMP)

     print(temp) # display
     txt(temp, filename="alleleSummary.txt")   # txt file
     html(temp, filename="alleleSummary.html") # html file
     latex(temp, filename="alleleSummary.tex") # latex file

