Description Usage Arguments Value Examples
View source: R/readSignedGmt.R
Convert gmtlist into a list of signed genesets
1 2 3 4 5 6 | gmtlist2signedGenesets(
gmtlist,
posPattern = "_UP$",
negPattern = "_DN$",
nomatch = c("ignore", "pos", "neg")
)
|
gmtlist |
A gmtlist object, probably read-in by |
posPattern |
Regular expression pattern of positive gene sets. It is trimmed from the original name to get the stem name of the gene set. See examples below. |
negPattern |
Regular expression pattern of negative gene sets. It is trimmed from the original name to get the stem name of the gene set. See examples below. |
nomatch |
Options to deal with gene sets that match neither positive nor negative patterns. ignore: they will be ignored (but not discarded, see details below); pos: they will be counted as positive signs; neg: they will be counted as negative signs |
An S4-object of SignedGenesets
, which is a list of signed_geneset, each being a two-item list; the first item is 'pos', containing a character vector of positive genes; and the second item is 'neg', containing a character vector of negative genes.
Gene set names are detected whether they are positive or negative. If neither positive nor negative, nomatch will determine how will they be interpreted. In case of pos
(or neg
), such genesets will be treated as positive (or negative) gene sets.In case nomatch is set to ignore
, the gene set will appear in the returned values with both positive and negative sets set to NULL
.
1 2 3 4 5 6 7 8 | testInputList <- list(list(name="GeneSetA_UP",genes=LETTERS[1:3]),
list(name="GeneSetA_DN", genes=LETTERS[4:6]),
list(name="GeneSetB", genes=LETTERS[2:4]),
list(name="GeneSetC_DN", genes=LETTERS[1:3]),
list(name="GeneSetD_UP", genes=LETTERS[1:3]))
testOutputList.ignore <- gmtlist2signedGenesets(testInputList, nomatch="ignore")
testOutputList.pos <- gmtlist2signedGenesets(testInputList, nomatch="pos")
testOutputList.neg <- gmtlist2signedGenesets(testInputList, nomatch="neg")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.