vsnh                   package:vsn                   R Documentation

_A _f_u_n_c_t_i_o_n _t_h_a_t _t_r_a_n_s_f_o_r_m_s _a _m_a_t_r_i_x _o_f _m_i_c_r_o_a_r_r_a_y _i_n_t_e_n_s_i_t_i_e_s

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

     A function that transforms a matrix of microarray intensities

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

     vsnh(y, p)

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

       y: A numeric matrix containing intensity values from an array
          experiment.  It may contain NA values.

       p: A numeric vector with the transformation parameters, of
          length 2*ncol(y).  NA values are not allowed. See Details.

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

     The transformation is defined as:

     vsnh(y,p)[k,i] = asinh( p[i] + p[i+d] * y[k,i] )

     where d=ncol(y) is the number of samples,  i=1:d counts over the
     samples, p[1:d] are the additive calibration offsets,
     p[(d+1):(2*d)] are the calibration factors, and k=1:nrow(y) counts
     over the probes.

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

     A numeric matrix of the same size as y, with the transformed data.

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

     Wolfgang Huber <URL: http://www.dkfz.de/mga/whuber>

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

     Variance stabilization applied to microarray data calibration and
     to the quantification of differential expression, Wolfgang Huber,
     Anja von Heydebreck, Holger Sueltmann, Annemarie Poustka, Martin
     Vingron; Bioinformatics (2002) 18 Suppl.1 S96-S104.

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

     'vsn'

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

     ##see vsn

