- Gene - Class in <Unnamed>
-
An instance of the Gene class represents (1) the
name of a gene (2) the reported function of the gene and (3) the
gene's expression values from a set of experiments.
- Gene(String) - Constructor for class Gene
-
Creates a Gene from a tab-delimited String.
- genes - Variable in class Clustering
-
A collection of genes
- getClusterMean() - Method in class Cluster
-
Returns the mean (i.e., average) of the expression vectors of all Genes in this Cluster.
- getDistanceToCluster(Cluster) - Method in class Cluster
-
Computes and returns the distance between this Cluster and the specified Cluster.
- getExperimentNamesFromFile(String) - Method in class Clustering
-
Returns a collection of experiment names for which there is data in the specified file.
- getExpressionInOneExperiment(int) - Method in class Gene
-
Returns the expression value of this Gene in the specified experiment.
- getExpressionVector() - Method in class Gene
-
Returns a copy of this Gene's expression values in all experiments.
- getGene(int) - Method in class Cluster
-
Returns a Gene in this Cluster.
- getGeneFunction() - Method in class Gene
-
Returns a String representation of the gene's function.
- getGeneInformationFromFile(String) - Method in class Clustering
-
Returns a collection of Genes based on data in the specified file.
- getGeneName() - Method in class Gene
-
Returns a String representation of the gene's name.
- getMeansOfAllClusters() - Method in class KMeans_Clustering
-
Return a collection of the mean (average) expression vectors for all of the clusters.
- getNumClusters() - Method in class Clustering
-
Returns the number of clusters in this Clustering.
- getNumExperiments() - Method in class Clustering
-
Returns the number of experiments in this Clustering.
- getNumGenes() - Method in class Clustering
-
Returns the total number of genes in this Clustering.
- getSizeOfCluster() - Method in class Cluster
-
Returns the number of genes in this Cluster.