Description Usage Arguments Details Value Author(s) References Examples
View source: R/c_output_parser.R
These functions parse output files of the QUBIC command line tool developed by Ma et al.
1 2 3 | parseQubicRules(filename)
parseQubicChars(file, check.names=FALSE, ...)
parseQubicBlocks(filename)
|
filename |
Input filename |
file |
Input filename |
check.names |
logical, should the column names be checked? |
... |
other parameters passed to the |
Parse QUBIC Command Line Tool Output Files
parseQubicRules
and parseQubicChars
both return a data
frame.
parseQubicBlocks
returns an instance of
QUBICBiclusterSet
class.
Jitao David Zhang <jitao_david.zhang@roche.com>
http://csbl.bmb.uga.edu/~maqin/bicluster/
1 2 3 4 5 6 7 8 9 10 11 12 13 | getRqubicFile <- function(filename) system.file("extdata", filename, package="rqubic")
## parse QUBIC rules
rule.file <- getRqubicFile("sampleExpressionSet.rules")
rqubic.sample.rule <- parseQubicRules(rule.file)
## parse QUBIC chars
chars.file <- getRqubicFile("sampleExpressionSet.chars")
rqubic.sample.chars <- parseQubicChars(chars.file)
## parse QUBIC blocks
block.file <- getRqubicFile("sampleExpressionSet.blocks")
rqubic.sample.data <- parseQubicBlocks(block.file)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.