Object representing the seed sets of a given metabolic network
GsMN,
seeds,
signature(object = "seedset")
:
get the genome scale metabolic network whose seed set is caculated
signature(object = "seedset")
:
return the number of source SCC
signature(object = "seedset")
:
returns the sizes of each source SCCs
signature(object = "seedset")
:
the non seeds of the GsMN
signature(object = "seedset")
:
show the short summary of a seedset class
signature(object = "seedset")
:
confidence score of the seed set
getSeedSets
,getGsMN
,len
,
nonseed
,seedSize
,confidencescore
## Not run: ------------------------------------ # #' ## generate a metabolic network in igraph class and a seed set of this graph # annodir <- system.file("extdata","koanno.tab",package = "RevEcoR") # metabolic.data <- read.delim2(file=annodir,stringsAsFactors=FALSE) # g <- reconstructGsMN(metabolic.data) # seeds <- getSeedSets(g)@seeds # seed.set <- new("seedset",GsMN = g, seeds = seeds) ## ---------------------------------------------