1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
\name{get_clusters}
\alias{\S4method{get_clusters}{STRINGdb}}
\title{
get_clusters
}
\description{
Returns a list of clusters of interacting proteins.
See the iGraph (http://igraph.sourceforge.net/) documentation for additional information on the algorithms.
}
\usage{
\S4method{get_clusters}{STRINGdb}(string_ids, algorithm="fastgreedy")
}
\arguments{
\item{string_ids}{
a vector of STRING identifiers.
}
\item{algorithm}{
algorithm to use for the clustering. You can choose between "fastgreedy", "walktrap", "spinglass" and "edge.betweenness").
}
}
\value{
list of clusters of interacting proteins.
}
\author{
Andrea Franceschini
}
|