Biorithm
1.1
|
#include <point.h>
Public Member Functions | |
void | insert (MyPointSet &p) |
Insert a point set, without an associated class. | |
void | insert (MyPointSet &p, string condition) |
Insert a point set, with an associated class. | |
void | assignClass (unsigned int index, string condition) |
bool | getPointSet (string condition, MyPointSet *pointSet) |
const MyPointSet * | getPointSet (string condition) const |
Stores a set of point sets. This class is typically useful for storing multiple gene expression datasets, each corresponding to a unique condition (aka class or clinical annotation).
void MySetOfPointSets::assignClass | ( | unsigned int | index, |
string | condition | ||
) | [inline] |
Assign a class to a point set at a known index.
bool MySetOfPointSets::getPointSet | ( | string | condition, |
MyPointSet * | pointSet | ||
) | [inline] |
Return the point set with the given class.
[in] | class,the | desired class. |
[out] | pointSet,a | pointer to the desired point set. |
const MyPointSet* MySetOfPointSets::getPointSet | ( | string | condition | ) | const [inline] |
Return the point set with the given class.
[in] | class,the | desired class. |