dstar                package:GeneMeta                R Documentation

_T_o_o_l_s _f_o_r _M_e_t_a-_a_n_a_l_y_s_i_s _o_f _g_e_n_e _e_x_p_r_e_s_s_i_o_n _d_a_t_a.

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

     A small number of meta-analysis functions for comparing two gene
     expression experiments are provided.

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

     dstar(d, n)
     getdF(data, categ)
     sigmad(d, ng1, ng2)

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

       d: A vector of t-statistics, ie. the output of 'getdF'.

       n: The number of t-statistics. 

    data: The data used to compute t-statistics, either a matrix or an
          'exprSet'

   categ: A vector of 0's and 1's indicating group membership.

     ng1: The number of samples in group 1.

     ng2: The number of samples in group 2.

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

     The functions 'getdF' compute t-test statistics for the input data
     and group membership (note that group membership must be indicated
     by a vector of 0's and 1's).

     The function 'dstar' computes an unbiased estimate of the t-test.
     The function 'sigmad' computes the variance estimate of 'dstar'.

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

     The different functions have different return values, but
     generally they are vectors of the requested quantities.

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

     L. Lusa, R. Gray and R. Gentleman

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

     Choi et al, Combining multiple microarray studies and modeling
     interstudy variation. Bioinformatics, 2003, i84-i90.

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

       
       x = matrix(rnorm(1000), nc=10)
       ds = getdF(x, rep(c(0,1), c(5,5)))
       dst = dstar(ds, ncol(x))
       sgd = sigmad(ds, 5, 5)

