detection.p.val          package:simpleaffy          R Documentation

_C_a_l_c_u_l_a_t_e _D_e_t_e_c_t_i_o_n _p-_v_a_l_u_e_s

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

     Calculate MAS5 detection pvalues and Present Marginal Absent
     calls. This is an implementation based on the algorithm described
     in  Liu, Mei et al. (2002) 'Analysis of high density expression
     microarrays with signed-rank call algorithms', Bioinformatics
     18(12) pp1593-1599.

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

     detection.p.val(x, tau = NULL,calls=TRUE,alpha1=NULL,alpha2=NULL,ignore.saturated=TRUE)

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

       x: An unnormalised AffyBatch object 

     tau: Errrmmm... tau 

  alpha1: Present-Marginal threshold 

  alpha2: Marginal-Absent threshold 

   calls: if true, generate PMA calls 

ignore.saturated: if true do the saturation correction described in the
          paper, with a saturation level of 46000 

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

     A list: 

    pval: A matrix of detection p values

    call: A matrix of PMA calls

_N_o_t_e:

     alpha1 and alpha2 are parameters that change according to the chip
     type you are using. If they are not specified, the function uses
     the current QC environment to find them, and attempts to set one
     up if it is not there. This is done with an internal call to the
     function 'setQCEnvironment'. If it is unable to find the
     appropriate config files, this will cause an error. See
     'setQCEnvironment' for more details.

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

     Crispin J Miller

_R_e_f_e_r_e_n_c_e_s:

     http://bioinformatics.picr.man.ac.uk/

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

     'setQCEnvironment'

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

        ## Not run: 
          dpv <- detection.p.val(eset);
        
     ## End(Not run)


