]> git.donarmstrong.com Git - mothur.git/blobdiff - flowdata.h
moved mothur's source into a folder to make grabbing just the source easier on github
[mothur.git] / flowdata.h
diff --git a/flowdata.h b/flowdata.h
deleted file mode 100644 (file)
index 1007653..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef FLOWDATA_H
-#define FLOWDATA_H
-
-/*
- *  flowdata.h
- *  Mothur
- *
- *  Created by Pat Schloss on 12/22/10.
- *  Copyright 2010 Schloss Lab. All rights reserved.
- *
- */
-
-#include "mothur.h"
-#include "mothurout.h"
-#include "sequence.hpp"
-
-class FlowData {
-
-public:
-       FlowData();
-       FlowData(int, float, float, int, string);
-       ~FlowData();
-       bool getNext(ifstream&);
-       string getName();
-       void capFlows(int);
-       bool hasMinFlows(int);
-       Sequence getSequence();
-
-       void printFlows(ofstream&);
-       void printFlows(ofstream&, string);
-private:
-       MothurOut* m;
-       
-       void updateEndFlow();
-       void translateFlow();
-       float signalIntensity, noiseIntensity;
-       int maxHomoP;
-       string seqName, locationString, sequence, baseFlow;
-       int numFlows, maxFlows, endFlow;
-       vector<float> flowData;
-};
-
-#endif