Mac binaries
[jabaws.git] / website / archive / binaries / mac / src / clustalw / src / multipleAlign / ProfileWithSub.h
diff --git a/website/archive/binaries/mac/src/clustalw/src/multipleAlign/ProfileWithSub.h b/website/archive/binaries/mac/src/clustalw/src/multipleAlign/ProfileWithSub.h
new file mode 100644 (file)
index 0000000..e79ed15
--- /dev/null
@@ -0,0 +1,34 @@
+/**
+ * Author: Mark Larkin
+ * 
+ * Copyright (c) 2007 Des Higgins, Julie Thompson and Toby Gibson.  
+ */
+#ifndef PROFILEWITHSUB_H
+#define PROFILEWITHSUB_H
+
+#include "../alignment/Alignment.h"
+#include "ProfileBase.h"
+
+namespace clustalw
+{
+
+class ProfileWithSub : public ProfileBase
+{
+    public:
+        /* Functions */
+        ProfileWithSub(int prfLen, int firstS, int lastS);
+        void resetPrf1();
+        void calcProfileWithSub(SeqArray* seqArray, vector<int>* gaps, 
+                                int matrix[NUMRES][NUMRES], vector<int>* seqWeight); 
+
+        /* Attributes */
+
+    private:
+        /* Functions */
+
+        /* Attributes */
+};
+
+}
+
+#endif