eSetFilter package:genefilter R Documentation _A _f_u_n_c_t_i_o_n _t_o _f_i_l_t_e_r _a_n _e_S_e_t _o_b_j_e_c_t _D_e_s_c_r_i_p_t_i_o_n: Given a Bioconductor's eSet object, this function filters genes using a set of selected filters. _U_s_a_g_e: eSetFilter(eSet) getFilterNames() getFuncDesc(lib = "genefilter", funcs = getFilterNames()) getRdAsText(lib) parseDesc(text) parseArgs(text) showESet(eSet) setESetArgs(filter) isESet(eSet) _A_r_g_u_m_e_n_t_s: eSet: 'eSet' an eSet object lib: 'lib' a character string for the name of an R library where functions of interests reside funcs: 'funcs' a vector of character strings for names of functions of interest text: 'text' a character of string from a filed (e. g. description, argument, ..) filed of an Rd file for a fucntion filter: 'filter' a character string for the name of a filter function _D_e_t_a_i_l_s: A set of filters may be selected to filter genes in through each of the filters in the order the filters have been selected _V_a_l_u_e: A logical vector of length equal to the number of rows of 'expr'. The values in that vector indicate whether the corresponding row of 'expr' passed the set of filter functions. _N_o_t_e: This function is part of the Bioconductor project at Dana-Farber Cancer Institute to provide Bioinformatics functonalities through R _A_u_t_h_o_r(_s): Jianhua Zhang _S_e_e _A_l_s_o: 'genefilter' _E_x_a_m_p_l_e_s: if(interactive()){ library("genefilter", character.only = TRUE) library("Biobase", character.only = TRUE) data(geneData) data(geneCov) covdesc<- list("Covariate 1", "Covariate 2", "Covariate 3") names(covdesc) <- names(geneCov) pdata <- new("phenoData", pData=geneCov, varLabels=covdesc) eset <- new("exprSet", exprs=geneData, phenoData=pdata) res <- eSetFilter(eset) }