Description Usage Arguments Value Author(s) See Also Examples
'generateModels' recreates models based on the parameters stored in a scoreList.
1 | generateModels(preprocData, scores)
|
preprocData |
The preprocessed data to be used. |
scores |
A scoreList object containing data of the models to be generated. |
'generateModels' returns a list of the generated models.
Antti Honkela, Jonatan Ropponen
GPLearn, GPRankTargets, GPRankTFs, scoreList
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | ## Not run:
# Load a mmgmos preprocessed fragment of the Drosophila developmental
# time series
data(drosophila_gpsim_fragment)
# Get the target probe names
targets <- c('FBgn0003486', 'FBgn0033188', 'FBgn0035257')
library(annotate)
aliasMapping <- getAnnMap("ALIAS2PROBE",
annotation(drosophila_gpsim_fragment))
twi <- get('twi', env=aliasMapping)
fbgnMapping <- getAnnMap("FLYBASE2PROBE",
annotation(drosophila_gpsim_fragment))
targetProbes <- mget(targets, env=fbgnMapping)
scores <- GPRankTargets(drosophila_gpsim_fragment, TF=twi,
testTargets=targetProbes,
options=list(quiet=TRUE),
filterLimit=1.8)
models <- generateModels(drosophila_gpsim_fragment, scores)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.