Description Usage Arguments Value Examples
wrapper around genome-wide distributed algorithm for CoGAPS
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | GWCoGAPS(
data,
params = new("CogapsParams"),
nThreads = 1,
messages = TRUE,
outputFrequency = 500,
uncertainty = NULL,
checkpointOutFile = "gaps_checkpoint.out",
checkpointInterval = 1000,
checkpointInFile = NULL,
transposeData = FALSE,
BPPARAM = NULL,
workerID = 1,
asynchronousUpdates = FALSE,
...
)
|
data |
File name or R object (see details for supported types) |
params |
CogapsParams object |
nThreads |
maximum number of threads to run on |
messages |
T/F for displaying output |
outputFrequency |
number of iterations between each output (set to 0 to disable status updates, other output is controlled by @code messages) |
uncertainty |
uncertainty matrix - either a matrix or a supported file type |
checkpointOutFile |
name of the checkpoint file to create |
checkpointInterval |
number of iterations between each checkpoint (set to 0 to disable checkpoints) |
checkpointInFile |
if this is provided, CoGAPS runs from the checkpoint contained in this file |
transposeData |
T/F for transposing data while reading it in - useful for data that is stored as samples x genes since CoGAPS requires data to be genes x samples |
BPPARAM |
BiocParallel backend |
workerID |
if calling CoGAPS in parallel the worker ID can be specified, only worker 1 prints output and each worker outputs when it finishes, this is not neccesary when using the default parallel methods (i.e. distributed CoGAPS) but only when the user is manually calling CoGAPS in parallel |
asynchronousUpdates |
enable asynchronous updating which allows for multi-threaded runs |
... |
allows for overwriting parameters in params |
CogapsResult object
1 2 3 4 5 6 7 8 9 | ## Not run:
data(GIST)
params <- new("CogapsParams")
params <- setDistributedParams(params, nSets=2)
params <- setParam(params, "nIterations", 100)
params <- setParam(params, "nPatterns", 3)
result <- GWCoGAPS(GIST.matrix, params, BPPARAM=BiocParallel::SerialParam())
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.