Description Usage Arguments Value Note Author(s) References See Also Examples
getBroadSets
parses one or more XML files for gene sets. The
file can reside locally or at a URL. The format followed is that
defined by the Broad (below). toBroadXML
creates Broad XML
from BroadCollection
gene sets.
toGmt
converts GeneSetColletion
objects to a character
vector representing the gene set collection in GMT
format. getGmt
reads a GMT file or other character vector into a
GeneSetColletion
.
1 2 3 4 5 6 7 | getBroadSets(uri, ..., membersId=c("MEMBERS_SYMBOLIZED", "MEMBERS_EZID"))
toBroadXML(geneSet, con, ...)
asBroadUri(name,
base="http://www.broad.mit.edu/gsea/msigdb/cards")
getGmt(con, geneIdType=NullIdentifier(),
collectionType=NullCollection(), sep="\t", ...)
toGmt(x, con, ...)
|
uri |
A file name or URL containing gene sets encoded following the Broad specification. For Broad sets, the uri can point to a MSIGDB. |
geneSet |
A |
x |
A |
con |
A (optional, in the case of |
name |
A character vector of Broad gene set names, e.g.,
|
base |
Base uri for finding Broad gene sets. |
geneIdType |
A constructor for the type of identifier the members
of the gene sets represent. See |
collectionType |
A constructor for the type of collection for the
gene sets. See |
sep |
The character string separating members of each gene set in the GMT file. |
... |
Further arguments passed to the underlying XML parser,
particularly |
membersId |
XML field name from which |
getBroadSets
returns a GeneSetCollection
of gene sets.
toBroadXML
returns a character vector of a single
GeneSet
or, if con
is provided, writes the XML to a
file.
asBroadUri
can be used to create URI names (to be used by
getBroadSets
of Broad files.
getGmt
returns a GeneSetCollection
of gene sets.
toGmt
returns character vectors where each line represents a
gene set. If con
is provided, the result is written to the
specified connection.
Actual Broad XML files differ from the DTD (e.g., an implied ',' separator between genes in a set); we parse to and from files as they exists the actual files.
Martin Morgan <mtmrogan@fhcrc.org>
http://www.broad.mit.edu/gsea/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ## 'fl' could also be a URI
fl <- system.file("extdata", "Broad.xml", package="GSEABase")
gss <- getBroadSets(fl) # GeneSetCollection of 2 sets
names(gss)
gss[[1]]
## Not run:
## Download 'msigdb_v2.5.xml' or 'c3.all.v2.5.symbols.gmt' from the
## Broad, http://www.broad.mit.edu/gsea/downloads.jsp#msigdb, then
gsc <- getBroadSets("/path/to/msigdb_v.2.5.xml")
types <- sapply(gsc, function(elt) bcCategory(collectionType(elt)))
c3gsc1 <- gsc[types == "c3"]
c3gsc2 <- getGmt("/path/to/c3.all.v2.5.symbols.gmt",
collectionType=BroadCollection(category="c3"),
geneIdType=SymbolIdentifier())
## End(Not run)
fl <- tempfile()
toBroadXML(gss[[1]], con=fl)
noquote(readLines(fl))
unlink(fl)
## Not run:
toBroadXML(gss[[1]]) # character vector
## End(Not run)
fl <- tempfile()
toGmt(gss, fl)
getGmt(fl)
unlink(fl)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.