Description Usage Arguments Details Value Examples
View source: R/writeQueryBatchFile.R
Write batch.txt file required to create GeneMANIA database
1 2 3 4 5 6 7 8 9 10 | writeQueryBatchFile(
netDir,
netList,
outDir = tempdir(),
idFile,
orgName = "predictor",
orgDesc = "my_predictor",
orgAlias = "my_predictor",
taxID = 1339
)
|
netDir |
(char) path to dir with networks |
netList |
(char) vector of network names |
outDir |
(char) directory to write batch file |
idFile |
(char) path to file with patient IDs |
orgName |
(char) organism name. Don't change the default unless you know what you are doing. |
orgDesc |
(char) organism description. Similar to |
orgAlias |
(char) organism alias. Similar to |
taxID |
(integer) taxonomyID required for GeneMANIA . Similar to
|
This file is used to compile features into a single database for feature selection.
No value. Side effect of writing batch file to
<outDir>/batch.txt
.
1 2 3 4 | data(npheno)
netDir <- system.file("extdata","example_nets",package="netDx")
netList <- dir(netDir,pattern='txt$')
writeQueryBatchFile(netDir,netList, tempdir(), npheno$ID)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.