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
|
/*
Theseus - maximum likelihood superpositioning of macromolecular structures
Copyright (C) 2004-2014 Douglas L. Theobald
This program 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.
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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the:
Free Software Foundation, Inc.,
59 Temple Place, Suite 330,
Boston, MA 02111-1307 USA
-/_|:|_|_\-
*/
#ifndef PDBCOORDS_SEEN
#define PDBCOORDS_SEEN
#include "msa.h"
#include "Cds.h"
typedef struct Seq2PDB Seq2PDB;
typedef struct PDBCds PDBCds;
typedef struct PDBCdsArray PDBCdsArray;
/* A structure for mapping sequence names in an alignment to their corresponding
pdbfiles */
struct Seq2PDB
{
int seqnum;
char **pdbfile_name;
char **seqname;
char *pdbfile_name_space;
char *seqname_space;
int *map;
MSA *msa;
int *singletons;
};
/* PDBCds is mostly for reading/writing PDB files */
struct PDBCds
{
char filename[FILENAME_MAX];
int model;
int vlen; /* number of coordinates */
double **matrix;
double *translation;
double scale;
/* PDB ATOM/HETATM fields */
char **record; /* ATOM or HETATM */
unsigned int *serial; /* atom number */
char *Hnum;
char **name; /* atom name, e.g. CA */
char *altLoc; /* alternate location identifier, usu A, B, or C */
char **resName; /* residue name, e.g. ALA, TYR, PHE, etc. */
char *xchainID;
char *chainID;
int *resSeq; /* residue number */
char *iCode;
double *x; /* x,y,z atomic coordinates */
double *y;
double *z;
double *occupancy;
double *tempFactor; /* B-factor */
char **segID;
char **element;
char **charge;
int *nu;
/* not to be accessed - for space only */
char *record_space;
char *name_space;
char *resName_space;
char *segID_space;
char *element_space;
char *charge_space;
};
struct PDBCdsArray
{
PDBCds **cds; /* pointer to an array of cnum pointers to Cds */
PDBCds *avecds; /* average Cds of all in CdsArray */
struct CdsArray *cdsA; /* associated CdsArray - do not free */
struct CdsArray *scratchA; /* do not free */
int vlen; /* number of coordinates */
int cnum; /* number of Cds in array */
int *upper, *lower;
int range_num;
Seq2PDB *seq2pdb;
};
#endif
|