markerSummary          package:GeneticsBase          R Documentation

_G_e_n_e_r_a_t_e _a_l_l_e_l_e, _g_e_n_o_t_y_p_e, _o_r _L_D _s_u_m_m_a_r_y _o_b_j_e_c_t_s

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

     Generate allele, genotype, or LD summary objects

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

     markerSummary(object, 
                   covariate = NULL, 
                   confidence = 0.95, 
                   alpha = 1 - confidence, 
                   show = TRUE, 
                   ...)
     ## S3 method for class 'markerSummary':
     print(x, ...)

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

  object: 

covariate: 

confidence: desired confidence interval for genotype and allele
          frequencies in each marker

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

    show: No longer used  

       x: object of class 'markerSummary' 

     ...: optional additional arguments

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

     We can print the alleleSummary and genotypeSummary on screen, or
     save in html, tex, or pdf format using appropriate methods.

_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 <- markerSummary(CAMP)

     print.markerSummary(temp)
     html.markerSummary(temp, filename="test")
     latex.markerSummary(temp, filename="test")

