sFiltertBH                package:CLL                R Documentation

_B_o_o_l_e_a_n _v_a_l_u_e_s _f_o_r _s_p_e_c_i_f_i_c _f_i_l_t_e_r_i_n_g _b_a_s_e_d _o_n _t_h_e _t-_t_e_s_t

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

     sFiltert is a named vector of booleans indicating whether a gene
     passed the specific and non-specific filtering steps.  The
     nonspecific filtering step was described in the nsFilter man page.
      The specific filtering was to perform row t-tests, then perform
     p-value adjustment using the Benjamini & Hochberg method (using
     the mt.rawp2adjp function in the multtest package with the "BH"
     procedure), and finally include the gene if its adjusted p-value
     was less than 0.35.  So to have a TRUE value in sFiltertBH, the
     gene must have an IQR greater than or equal to the median IQR and
     must have a BH adjusted p-value less than 0.35. 

     A TRUE value indicates that the gene passed the filtering step and
     should be included in further analysis.

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

     data(sFiltert)

_F_o_r_m_a_t:

     A named vector of logicals.  The names correspond to the
     Affymetrix identifiers and the values are booleans indicating
     whether the gene passed the nonspecific and specific filtering
     (based on adjusted t-test p-values).

_S_o_u_r_c_e:

     The CLL microarray data came from  Dr. Sabina Chiaretti at
     Division of Hematology, Department of Cellular Biotechnologies and
     Hematology, University La Sapienza, Rome, Italy and Dr. Jerome
     Ritz at Department of Medicine, Brigham and Women's Hospital,
     Harvard Medical School, Boston, Massachusetts.

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

     data(sFiltertBH)
     data(sCLLex)
     sCLLexSF<-sCLLex[sFiltertBH, ]

