getMipsInfo(wantDefault = TRUE, toGrep = NULL,
parseType = NULL, eCode = c("901.01.03", "901.01.03.01", "901.01.03.02", "901.01.04", "901.01.04.01", "901.01.04.02", "901.01.05", "901.01.05.01", "901.01.05.02", "902.01.09.02", "902.01.01.02.01.01", "902.01.01.02.01.01.01", "902.01.01.02.01.01.02", "902.01.01.02.01.02", "902.01.01.02.01.02.01", "902.01.01.02.01.02.02", "902.01.01.04", "902.01.01.04.01", "902.01.01.04.01.01", "902.01.01.04.01.02", "902.01.01.04.01.03", "902.01.01.04.02", "901.01.09.02"), wantSubComplexes=TRUE,
ht=FALSE, dubiousGenes=NULL)
1. If the wantDefault parameter is TRUE, the function will grep for "complex", "\Base\b", and "\Bsome\b".
2. If toGrep is not NULL, it will be a character vector with terms and perl regular expressions that are intended for searching in the MIPS database. NB - it toGrep is not NULL, then parseType should also not be NULL as the parseType indicates how each term should be searched.
3. parseType needs to be supplied if toGrep is not NULL. It is a character vector, either a single entry or of length equal to the length of toGrep, detailing how each term in toGrep will be parsed in the GO database. If only one term is supplied for parseType, then all the terms in toGrep will be parsed identically. Otherwise, the i-th term in parseType will reflect the parsing of the i-th term in toGrep.
4. The eCode argument is a character vector consistin of MIPS evidence codes. A protein will be removed from the protein complex is ALL the evidence codes used to annotate the protein are supplied in the eCode argument; otherwise, it is left in the complex.
5. If wantSubComplexes parameter is True, the function will return the sub-groupings (sub-complexes or sub-structures) as given by the clusterings in the MIPS protein complex database.
6. If ht parameter is True, the function will return the will return those protein complex estimates obtained from high throughput analysis as well.
#mips = getMipsInfo(wantSubComplexes = FALSE)
#mipsPhrase = getMipsInfo(wantDefault = FALSE, toGrep = "\Bsomal\b",
#parseType = "grep", wantSubComplexes=FALSE)
Run the code above in your browser using DataLab