-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexpressionGroup.h
More file actions
39 lines (26 loc) · 942 Bytes
/
Copy pathexpressionGroup.h
File metadata and controls
39 lines (26 loc) · 942 Bytes
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
29
30
31
32
33
34
35
36
37
38
39
#ifndef EXPRESSIONGROUP_H
#define EXPRESSIONGROUP_H
class expressionGroup{
public:
expressionGroup(long n_probesets, long n_arrays,wxArrayString Names,wxString cdfName, bool hasSE=false);
~expressionGroup();
expressionGroup(const expressionGroup &e);
void writetofile(const wxString output_fname, const wxString output_path,const int naturalscale);
void writeSEtofile(const wxString output_fname, const wxString output_path);
double &operator[](unsigned long i);
void AddName(const wxString &name);
void writetobinaryfile(const wxString output_fname, const wxString output_path,const int naturalscale);
double &SE(unsigned long i);
int count_arrays();
int count_probesets();
wxArrayString GetArrayNames();
private:
double *expressionvals;
double *se_expressionvals;
int n_probesets;
int n_arrays;
wxArrayString ProbesetNames;
wxArrayString ArrayNames;
wxString ArrayTypeName;
};
#endif