Description Usage Arguments See Also Examples
View source: R/readSignedGmt.R
Read signed GMT files
1 2 3 4 5 6 7 8 | readSignedGmt(
filename,
posPattern = "_UP$",
negPattern = "_DN$",
nomatch = c("ignore", "pos", "neg"),
uniqGenes = TRUE,
namespace = NULL
)
|
filename |
A gmt file |
posPattern |
Pattern of positive gene sets |
negPattern |
Pattern of negative gene sets |
nomatch |
options to deal with gene sets that match to neither posPattern nor negPattern patterns |
uniqGenes |
Logical, whether genes should be made unique |
namespace |
Character string or |
gmtlist2signedGenesets
for parameters posPattern
, negPattern
, and nomatch
1 2 3 4 | testGmtFile <- system.file("extdata/test.gmt", package="BioQC")
testSignedGenesets.ignore <- readSignedGmt(testGmtFile, nomatch="ignore")
testSignedGenesets.pos <- readSignedGmt(testGmtFile, nomatch="pos")
testSignedGenesets.neg <- readSignedGmt(testGmtFile, nomatch="neg")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.