Delete unneeded directory
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / fileInput / RSFFileParser.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/fileInput/RSFFileParser.h b/website/archive/binaries/mac/src/clustalw/src/fileInput/RSFFileParser.h
deleted file mode 100644 (file)
index 2a09081..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- * Author: Mark Larkin
- * 
- * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
- */
-#ifndef RSFFILEPARSER_H
-#define RSFFILEPARSER_H
-
-#include <string>
-#include "FileParser.h"
-
-namespace clustalw
-{
-
-class RSFFileParser : public FileParser
-{
-    public:
-        /* Functions */
-        RSFFileParser(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 */
-        void getRSFFeature(char* line, vector<char>& secStructMask, int length);
-        bool keyword(char *line, const char *code);
-        /* Attributes */
-        string fileName;
-};
-
-}
-#endif
-
-