Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / fileInput / PearsonFileParser.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/fileInput/PearsonFileParser.h b/website/archive/binaries/mac/src/clustalw/src/fileInput/PearsonFileParser.h
deleted file mode 100644 (file)
index d298eef..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-/** 
- * This file is for parsing pearson format files.
- * CHANGE: 
- */
-#ifndef PEARSONFILEPARSER_H
-#define PEARSONFILEPARSER_H
-
-#include <string>
-#include "FileParser.h"
-
-namespace clustalw
-{
-using namespace std;
-
-class PearsonFileParser : public FileParser
-{
-    public:
-        /* Functions */
-        PearsonFileParser(string filePath);
-        virtual vector<Sequence> getSeqRange(int firstSeq, int num, string *offendingSeq=NULL);
-        virtual Sequence getSeq(int seqNum, string *offendingSeq=NULL);
-        virtual int countSeqs();
-        virtual void getSecStructure(vector<char>& gapPenaltyMask, 
-                                     vector<char>& secStructMask, string& secStructName, 
-                                     int &structPenalties, int length); 
-
-        /* Attributes */
-
-    private:
-        /* Functions */
-
-        /* Attributes */
-        string fileName;
-};
-
-}
-#endif
-