PMIDAmat              package:annotate              R Documentation

_A _f_u_n_c_t_i_o_n _t_o _c_o_m_p_u_t_e _t_h_e _p_r_o_b_e _t_o _P_u_b_M_e_d _i_d _i_n_c_i_d_e_n_c_e _m_a_t_r_i_x.

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

     For a given chip or a given set of genes, it computes the mapping
     from probes to PubMed id.

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

     PMIDAmat(pkg, gene=NULL)

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

     pkg: The package name of the chip for which the incidence matrix
          should be computed.

    gene: A character vector of interested probe set ids or NULL
          (default).

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

     Not much to say, just find which probes are associated with which
     PubMed ids and return the incidence matrix, with PubMed ids as
     rows and probes as columns. 

     To specify a set of probes to use, let the argument 'gene' to be a
     vector of probe ids.   Bt this way, the calculations are not
     involved with non-interested genes/PubMed ids so that the whole
     process could finish soon.

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

     A matrix containing zero or one, depending on whether the probe
     (column) is associated with a PubMed id (row).

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

     R. Gentleman

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

       if(require("hgu95av2") ) {
         probe <- names(as.list(hgu95av2ACCNUM))
         Amat = PMIDAmat("hgu95av2", gene=sample(probe, 10))
      }

