/usr/include/mmdb/mmdb_align.h is in libmmdb-dev 1.23.2.1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | // =================================================================
//
// CCP4 Coordinate Library: support of coordinate-related
// functionality in protein crystallography applications.
//
// Copyright (C) Eugene Krissinel 2000-2008.
//
// This library is free software: you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License version 3, modified in accordance with the provisions
// of the license to address the requirements of UK law.
//
// You should have received a copy of the modified GNU Lesser
// General Public License along with this library. If not, copies
// may be downloaded from http://www.ccp4.ac.uk/ccp4license.php
//
// This program 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 Lesser General Public License for more details.
//
// =================================================================
//
// 08.07.08 <-- Date of Last Modification.
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// -----------------------------------------------------------------
//
// **** Module : MMDB_Align <interface>
// ~~~~~~~~~
// **** Classes : CAlignment ( alignment of character strings )
// ~~~~~~~~~~~~ CAlignment1 ( alignment of integer vectors )
//
// (C) E.Krissinel' 2000-2008
//
// =================================================================
//
#ifndef __MMDB_Align__
#define __MMDB_Align__
#ifndef __Stream__
#include "stream_.h"
#endif
// ===================== CAlignParams ======================
DefineClass(CAlignParams);
DefineStreamFunctions(CAlignParams)
class CAlignParams : public CStream {
public :
realtype gapWeight,spaceWeight;
realtype equalScore,nequalScore;
int method;
CAlignParams();
CAlignParams ( RPCStream Object );
void write ( RCFile f );
void read ( RCFile f );
protected :
void InitAlignParams();
};
// ===================== CAlignment ======================
DefineClass(CAlignment)
#define ALIGN_GLOBAL 0
#define ALIGN_LOCAL 1
#define ALIGN_GLOBLOC 2
#define ALIGN_FREEENDS 3
class CAlignment : public CStream {
public :
CAlignment ();
CAlignment ( RPCStream Object );
~CAlignment ();
void SetAffineModel ( realtype WGap, realtype WSpace );
void SetScores ( realtype SEqual, realtype SNEqual );
void Align ( cpstr S, cpstr T, int Method=ALIGN_GLOBAL );
pstr GetAlignedS() { return AlgnS; }
pstr GetAlignedT() { return AlgnT; }
realtype GetScore () { return VAchieved; }
char GetSpace () { return Space; }
virtual void OutputResults ( RCFile f, cpstr S, cpstr T );
void read ( RCFile f );
void write ( RCFile f );
protected :
char Space;
int AlignKey, SLen,TLen;
rmatrix VT,ET,FT;
pstr AlgnS,AlgnT;
realtype VAchieved;
realtype SEq,SNEq, Wg,Ws;
virtual void InitAlignment();
virtual void FreeMemory ();
virtual realtype Score ( char A, char B );
void BuildGATable ( cpstr S, cpstr T,
Boolean FreeSEnd, Boolean FreeTEnd );
void BuildLATable ( cpstr S, cpstr T );
void Backtrace ( cpstr S, cpstr T, int J, int I,
Boolean StopAtZero );
void AdjustEnds ( cpstr S, cpstr T, int J, int I );
void PrintVT ( cpstr S, cpstr T );
};
// ===================== CAlignment1 ======================
DefineClass(CAlignment1)
class CAlignment1 : public CStream {
public :
CAlignment1 ();
CAlignment1 ( RPCStream Object );
~CAlignment1();
void SetAffineModel ( realtype WGap, realtype WSpace );
void SetScores ( realtype SEqual, realtype SNEqual );
void Align ( ivector S, int SLength,
ivector T, int TLength,
int Method=ALIGN_GLOBAL );
ivector GetAlignedS () { return AlgnS; }
ivector GetAlignedT () { return AlgnT; }
int GetAlignLength() { return AlgnLen; }
realtype GetScore () { return VAchieved; }
virtual void OutputResults ( RCFile f, ivector S, int lenS,
ivector T, int lenT );
void read ( RCFile f );
void write ( RCFile f );
protected :
int Space;
int AlignKey, SLen,TLen, AlgnLen;
rmatrix VT,ET,FT;
ivector AlgnS,AlgnT;
realtype VAchieved;
realtype SEq,SNEq, Wg,Ws;
virtual void InitAlignment1();
virtual void FreeMemory ();
virtual realtype Score ( int A, int B );
void BuildGATable ( ivector S, ivector T,
Boolean FreeSEnds, Boolean FreeTEnds );
void BuildLATable ( ivector S, ivector T );
void Backtrace ( ivector S, ivector T, int J, int I,
Boolean StopAtZero );
void AdjustEnds ( ivector S, ivector T, int J, int I );
void PrintVT ( ivector S, ivector T );
};
#endif
|