-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProteinDomains.h
More file actions
102 lines (83 loc) · 2.25 KB
/
ProteinDomains.h
File metadata and controls
102 lines (83 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//////////////////////////////////////////////////////////////////////////////////
//
// STAMP version 1.3
//
// Written By: Shaun Mahony
//
// main.cpp
//
// Started: 4th Feb 2006
//
// Copyright 2007-2015 Shaun Mahony
//
// This file is part of STAMP.
//
// STAMP is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// STAMP is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with STAMP; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
////////////////////////////////////////////////////////////////////////////////////
#ifndef PROTEIN_MARK
#define PROTEIN_MARK
//Includes
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#include "globals.h"
#include "Motif.h"
#include "Alignment.h"
class ProteinMotif
{
private:
int len;
public:
char name[STR_LEN];
double** f;
//Constructor
ProteinMotif(int l);
//Accessor
int GetLen(){return len;}
//Print the motif
void PrintMotif();
//the information content of a column
double Info(int col);
//log base 2
double log_2(double x){ return(log(x) / LOG_2);}
//Destructor
~ProteinMotif();
};
//Protein Domain Handler
class ProteinDomains
{
private:
int numDomains;
char inputFN[STR_LEN];
public:
//The overall and single motifs
ProteinMotif* domainMotif;
ProteinMotif** individualMotifs;
//Constructor
ProteinDomains(){numDomains=0; domainMotif=NULL; individualMotifs=NULL;}
//Read in the motifs
void ReadDomains(char* inFileName, Motif** inputMotifs, int numMotifs);
//Do the mutual information analysis
void MutualInformation(MultiAlignRec* pssmAlignment, Motif* alignmentMotif, Motif** inputMotifs, int numMotifs);
//Convert an amino acid to a number
int char2num(char x);
//log base 2
double log_2(double x){ return(log(x) / LOG_2);}
//Destructor
~ProteinDomains();
};
#endif