85bd10da37f403d155c4434d90edcd146e682948 braney Mon May 15 13:03:32 2017 -0700 add sorting to composite wiggles. diff --git src/optimalLeaf/readFile.hh src/optimalLeaf/readFile.hh new file mode 100644 index 0000000..6753c57 --- /dev/null +++ src/optimalLeaf/readFile.hh @@ -0,0 +1,26 @@ +//---------------------------------------------------- +// readFile.hh +// reads the input file. See README for details on how this +// file should look like. +// ----------------------------------------------------- +#ifndef READFILE_HH +#define READFILE_HH + + + +class readFile { + private: + int numGenes,expNum; + float **vals; + char **geneNames,**geneDesc,**expNames; + public: + readFile(char *fileName,int orfL, int descL); + readFile( int numGenes, int expNum, float **vals, char **geneNames,char **geneDesc,char **expNames); + int getNumGenes() {return numGenes;} + int getNumExp() {return expNum;} + float** getVals() {return vals;} + char ** getNames() {return geneNames;} + char ** getDesc() {return geneDesc;} + char ** getExp() {return expNames;} +}; +#endif