aafSearchText            package:annaffy            R Documentation

_S_e_a_r_c_h _m_e_t_a_d_a_t_a _a_n_n_o_t_a_t_i_o_n _t_e_x_t

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

     Searches Bioconductor metadata annotation package text for
     specific strings or Perl compatible regular expressions.

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

     aafSearchText(chip, colnames, text, logic = "OR")

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

    chip: name of the chip data package

colnames: character vector of metadata column names to search

    text: character vector of strings/regular expressons to match

   logic: type of logic to use, "AND" or "OR"

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

     A character vector of probe ids matching the search criteria.

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

     Colin A. Smith, annaffy@colinsmith.org

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

     aafSearchGO

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

     if (require(hgu95av2.db)) {
         aafSearchText("hgu95av2.db", "Description", c("kinase", "interferon"))
         aafSearchText("hgu95av2.db", c("Gene Ontology", "Pathway"), "ribosome")
     }

