File: ajpdb.h

package info (click to toggle)
emboss 6.6.0%2Bdfsg-15
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 571,580 kB
  • sloc: ansic: 460,579; java: 29,383; perl: 13,573; sh: 12,753; makefile: 3,295; csh: 706; asm: 351; xml: 239; pascal: 237; modula3: 8
file content (1001 lines) | stat: -rw-r--r-- 34,946 bytes parent folder | download | duplicates (6)
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
/* @include ajpdb *************************************************************
**
** AJAX low-level functions for handling protein structural data.
** For use with the Atom, Chain and Pdb objects defined in ajpdb.h
** Also for use with Hetent, Het, Vdwres, Vdwall, Cmap and Pdbtosp objects
** (also defined in ajpdb.h).
** Includes functions for reading and writing ccf (clean coordinate file)
** format.
**
** @author Copyright (C) 2004 Jon Ison (jison@hgmp.mrc.ac.uk)
** @version $Revision: 1.32 $
** @modified $Date: 2012/04/12 20:37:30 $ by $Author: mks $
** @@
**
** This library is free software; you can redistribute it and/or
** modify it under the terms of the GNU Lesser General Public
** License as published by the Free Software Foundation; either
** version 2.1 of the License, or (at your option) any later version.
**
** This library 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.
**
** You should have received a copy of the GNU Lesser General Public
** License along with this library; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
** MA  02110-1301,  USA.
**
******************************************************************************/

#ifndef AJPDB_H
#define AJPDB_H

/* ========================================================================= */
/* ============================= include files ============================= */
/* ========================================================================= */

#include "ajdefine.h"
#include "ajarr.h"
#include "ajstr.h"
#include "ajlist.h"
#include "ajfile.h"

AJ_BEGIN_DECLS




/* ========================================================================= */
/* =============================== constants =============================== */
/* ========================================================================= */




/* @enum AjECmapType **********************************************************
**
** AJAX Cmap Type enumeration
**
** @value ajECmapTypeNULL NULL
** @value ajECmapTypeIntra Intra-molecular contact
** @value ajECmapTypeInter Inter-molecular contact
** @value ajECmapTypeLigand Ligand contact
** @@
******************************************************************************/

typedef enum AjOCmapType
{
    ajECmapTypeNULL,
    ajECmapTypeIntra,
    ajECmapTypeInter,
    ajECmapTypeLigand
} AjECmapType;




/* @enum AjEPdbMethod *********************************************************
**
** AJAX PDB Method enumeration
**
** @value ajEPdbMethodNULL NULL
** @value ajEPdbMethodXray Structure was determined by X-ray crystallography
** @value ajEPdbMethodNmr  Structure was determined by NMR or is a model
** @@
******************************************************************************/

typedef enum AjOPdbMethod
{
    ajEPdbMethodNULL,
    ajEPdbMethodXray,
    ajEPdbMethodNmr
} AjEPdbMethod;




/* @enum AjEPdbMode ***********************************************************
**
** AJAX PDB Mode enumeration
**
** @value ajEPdbModeNULL NULL
** @value ajEPdbModePdb Original PDB residue numbering
** @value ajEPdbModeIdx Corrected residue numbering
**                      (index into SEQRES sequence)
** @@
******************************************************************************/

typedef enum AjOPdbMode
{
    ajEPdbModeNULL,
    ajEPdbModePdb,
    ajEPdbModeIdx
} AjEPdbMode;




/* ========================================================================= */
/* ============================== public data ============================== */
/* ========================================================================= */




/* @data AjPAtom **************************************************************
**
** Ajax atom object.
**
** Holds protein atom data
**
** AjPAtom is implemented as a pointer to a C data structure.
**
** @alias AjSAtom
** @alias AjOAtom
**
** @attr  Mod     [ajuint]  Model number
** @attr  Chn     [ajuint]  Chain number
** @attr  Gpn     [ajint]   Group number
** @attr  Idx     [ajuint]  Residue number - index into sequence.
** @attr  Pdb     [AjPStr]  Residue number string from the original PDB file.
** @attr  Id3     [AjPStr]  Residue or group identifier.
** @attr  Atm     [AjPStr]  Atom identifier.
** @attr  X       [float]   X coordinate.
** @attr  Y       [float]   Y coordinate.
** @attr  Z       [float]   Z coordinate.
** @attr  O       [float]   Occupancy.
** @attr  B       [float]   B value thermal factor.
** @attr  Id1     [char]    Standard residue identifier or 'X' for unknown
**                          types or '.' for heterogens and water.
** @attr  Type    [char]    'P' (protein atom), 'H' ("heterogens") or 'W'
**                          (water).
** @attr  Padding [char[2]] Padding to alignment boundary
**
** @new     ajAtomNew Default Atom constructor.
** @delete  ajAtomDel Default Atom destructor.
** @assign  ajAtomCopy Replicates an Atom object.
** @assign  ajAtomListCopy Replicates a list of Atom objects.
** @use     embAtomInContact Determines whether two atoms are in physical
**          contact.
** @use     embAtomDistance Returns the distance (Angstroms) between two
**          atoms.
** @use     embVdwRad Returns the van der Waals radius of an atom.
** @other   embPdbListHeterogens Construct a list of arrays of Atom objects
**          for ligands in the current Pdb object (a single array for each
**          ligand).
** @@
******************************************************************************/

typedef struct AjSAtom
{
    ajuint Mod;
    ajuint Chn;
    ajint Gpn;
    ajuint Idx;
    AjPStr Pdb;
    AjPStr Id3;
    AjPStr Atm;
    float X;
    float Y;
    float Z;
    float O;
    float B;
    char Id1;
    char Type;
    char Padding[2];
} AjOAtom;

#define AjPAtom AjOAtom*




/* @data AjPResidue ***********************************************************
**
** Ajax Residue object.
**
** Holds data for an amino acid residue.
**
** AjPResidue is implemented as a pointer to a C data structure.
**
** @alias AjSResidue
** @alias AjOResidue
**
** @attr Mod    [ajuint]    Model number
** @attr Chn    [ajuint]    Chain number
** @attr Idx    [ajuint]    Residue number. Can be used to index into the
**                          polypeptide sequence (the Seq element of an
**                          AjSChain object). Idx numbers start at 1 and run
**                          sequentially.
** @attr eNum   [ajint]     Element serial number (for secondary structure
**                          from the PDB file).
** @attr Pdb    [AjPStr]    Residue number string from the original PDB file.
** @attr Id3    [AjPStr]    3-letter residue identifier code.
** @attr eId    [AjPStr]    Element identifier (for secondary structure from
**                          the PDB file).
** @attr eClass [ajint]     Class of helix, an int from 1-10,  from
**        http://www.rcsb.org/pdb/docs/format/pdbguide2.2/guide2.2_frame.html
**                          (for secondary structure from the PDB file).
**
** @attr eStrideNum [ajint] Number of the element: sequential count from
**                          N-term (for secondary structure from STRIDE).
** @attr Phi    [float]     Phi angle.
** @attr Psi    [float]     Psi angle.
** @attr Area   [float]     Residue solvent accessible area.
**
** @attr all_abs    [float] Absolute accessibility, all atoms.
** @attr all_rel    [float] Relative accessibility, all atoms.
** @attr side_abs   [float] Absolute accessibility, atoms in side chain.
** @attr side_rel   [float] Relative accessibility, atoms in side chain.
** @attr main_abs   [float] Absolute accessibility, atoms in main chain.
** @attr main_rel   [float] Relative accessibility, atoms in main chain.
** @attr npol_abs   [float] Absolute accessibility, non-polar atoms.
** @attr npol_rel   [float] Relative accessibility, non-polar atoms.
** @attr pol_abs    [float] Absolute accessibility, polar atoms.
** @attr pol_rel    [float] Relative accessibility, polar atoms.
** @attr Id1        [char]  Standard 1-letter residue identifier or 'X' for
**                          unknown types.
** @attr eType      [char]  Element type COIL ('C'), HELIX ('H'), SHEET ('E')
**                          or TURN ('T'). Has a default value of COIL
**                          (for secondary structure from the PDB file).
** @attr eStrideType    [char]  Element type:
**                                  ALPHA HELIX ('H'),
**                                  3-10 HELIX ('G'),
**                                  PI-HELIX ('I'),
**                                  EXTENDED CONFORMATION ('E'),
**                                  ISOLATED BRIDGE ('B' or 'b'),
**                                  TURN ('T') or
**                                  COIL (none of the above) ('C')
**                              (for secondary structure from STRIDE).
** @attr Padding    [char[1]]   Padding to alignment boundary
**
** @new     ajResidueNew Default Residue constructor.
** @delete  ajResidueDel Default Residue destructor.
** @assign  ajResidueCopy Replicates a Residue object.
** @assign  ajResidueListCopy Replicates a list of Residue objects.
** @use ajResidueEnv1 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv2 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv3 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv4 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv5 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv6 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv7 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv8 Assigns environment based on side chain accessibility and
**  secondary structure.
** @use ajResidueEnv9 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv10 Assigns environment based on side chain accessibility
** and secondary structure.
** @use ajResidueEnv11 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv12 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv13 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv14 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv15 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueEnv16 Assigns environment based on side chain accessibility
**  and secondary structure.
** @use ajResidueSSEnv  Assigns secondary structure environment of a residue.
** @@
******************************************************************************/

typedef struct AjSResidue
{
    ajuint Mod;
    ajuint Chn;
    ajuint Idx;
    ajint eNum;
    AjPStr Pdb;
    AjPStr Id3;

    AjPStr eId;

    ajint eClass;
    ajint eStrideNum;
    float Phi;
    float Psi;
    float Area;

    float all_abs;
    float all_rel;
    float side_abs;
    float side_rel;
    float main_abs;
    float main_rel;
    float npol_abs;
    float npol_rel;
    float pol_abs;
    float pol_rel;
    char Id1;
    char eType;
    char eStrideType;
    char Padding[1];
} AjOResidue;

#define AjPResidue AjOResidue*




/* @data AjPChain *************************************************************
**
** Ajax chain object.
**
** Holds protein chain data
**
** AjPChain is implemented as a pointer to a C data structure.
**
** @alias AjSChain
** @alias AjOChain
**
** @attr  Nres        [ajuint]   Number of amino acid residues.
** @attr  Nlig        [ajuint]   Number of groups which are non-covalently
**                               associated with the chain, excluding water
**                               ("heterogens").
** @attr  numHelices  [ajint]    No. of helices in the chain according to the
**                               PDB file.
** @attr  numStrands  [ajint]    No. of strands in the chain according to the
**                               PDB file.
** @attr  Seq         [AjPStr]   Protein sequence as string.
** @attr  Atoms       [AjPList]  List of Atom objects for (potentially multiple
**                               models) of the polypeptide chain and any
**                               groups (ligands) that could be uniquely
**                               associated with a chain.
** @attr  Residues    [AjPList]  List of Residue objects for (potentially
**                               multiple models) of the polypeptide chain.
** @attr  Id          [char]     Chain id, ('.' if one wasn't specified in
**                               the PDB file).
** @attr Padding [char[7]] Padding to alignment boundary
**
**
**
** @new     ajChainNew Default Chain constructor.
** @delete  ajChainDel Default Chain destructor.
** @@
******************************************************************************/

typedef struct AjSChain
{
    ajuint Nres;
    ajuint Nlig;
    ajint numHelices;
    ajint numStrands;
    AjPStr Seq;
    AjPList Atoms;
    AjPList Residues;
    char Id;
    char Padding[7];
} AjOChain;

#define AjPChain AjOChain*




/* @data AjPPdb ***************************************************************
**
** Ajax pdb object.
**
** Holds arrays describing pdb data
**
** AjPPdb is implemented as a pointer to a C data structure.
**
** @alias AjSPdb
** @alias AjOPdb
**
** @attr Pdb    [AjPStr]        PDB code
** @attr Compnd [AjPStr]        Text from COMPND records in PDB file
** @attr Source [AjPStr]        Text from SOURCE records in PDB file
** @attr Method [AjEPdbMethod]  AJAX PDB Method enumeration
** @attr Reso   [float]         Resolution of an XRAY structure or 0
** @attr Nmod   [ajuint]        Number of models (always 1 for XRAY structures)
** @attr Nchn   [ajuint]        Number of polypeptide chains
** @attr Chains [AjPChain*]     Array of pointers to AjSChain structures
** @attr gpid   [AjPChar]       Array of chain (group) id's for groups that
**                              could not be uniquely associated with a chain.
** @attr Groups [AjPList]       List of Atom objects for groups that could not
**                              be uniquely associated with a chain.
** @attr Water  [AjPList]       List of Atom objects for water molecules.
** @attr Ngp    [ajuint]        Number of groups that could not be uniquely
**                              associated with a chain in the SEQRES records.
** @attr Padding    [char[4]]   Padding to alignment boundary
**
** @new     ajPdbNew Default Pdb constructor.
** @new     ajPdbReadRawNew Pdb constructor from reading pdb format file.
** @new     ajPdbReadNew Pdb constructor from reading CCF format file.
** @new     ajPdbReadFirstModelNew Pdb constructor from reading CCF format
**          file (retrieve data for 1st model only).
** @new     ajPdbReadoldNew Pdb constructor from reading CCF format file
**          lacking residue-level description in RE records.
** @new     ajPdbReadoldFirstModelNew Pdb constructor from reading CCF format
**          file lacking residue-level description in RE records.
** @delete  ajPdbDel Default Pdb destructor.
** @assign  ajPdbCopy Replicates a Pdb object.
** @use     ajPdbGetEStrideType Reads a Pdb object and writes a string with
**          the secondary structure.
** @use     ajPdbChnidToNum Finds the chain number for a given chain
**          identifier.
** @use     embPdbToIdx Reads a Pdb object and writes an integer which gives
**          the index into the protein sequence for a residue with a
**          specified pdb residue number and a specified chain number.
** @use     embPdbidToSp  Read a pdb identifier code and writes the equivalent
**          swissprot identifier code.
** @use     embPdbidToAcc Read a pdb identifier code and writes the equivalent
**          accession number.
** @use     embPdbidToScop Writes a list of scop identifier codes for the
**          domains that a Pdb object contains.
** @cast    embPdbAtomIndexI Reads a Pdb object and writes an integer array
**          which gives the index into the protein sequence for structured
**          residues (residues for which electron density was determined) for
**          a given chain.
** @cast    embPdbAtomIndexICA Reads a Pdb object and writes an integer array
**          which gives the index into the protein sequence for structured
**          residues (residues for which electron density was determined) for
**          a given chain, EXCLUDING those residues for which CA atoms are
**          missing.
** @cast    embPdbAtomIndexCCA Reads a Pdb object and writes an integer array
**          which gives the index into the protein sequence for structured
**          residues (residues for which electron density was determined) for
**          a given chain, EXCLUDING those residues for which CA atoms are
**          missing.
** @output  ajPdbWriteDomainRecordRaw Writes lines to a pdb format file for
**          a domain.
** @output  ajPdbWriteRecordRaw Writes lines to a pdb format file for a
**          protein.
** @output  ajPdbWriteAllRaw Writes a pdb-format file for a protein.
** @output  ajPdbWriteDomainRaw Writes a pdb-format file for a SCOP domain.
** @output  ajPdbWriteAll Writes a CCF-format file for a protein.
** @output  ajPdbWriteDomain Writes a CCF-format file for a domain).
** @output  ajPdbWriteSegment Writes a CCF-format file for a segment of a
**          protein.
** @cast    embPdbListHeterogens Construct a list of arrays of Atom objects
**          for ligands in the current Pdb object (a single array for each
**          ligand).
**
** @@
******************************************************************************/

typedef struct AjSPdb
{
    AjPStr Pdb;
    AjPStr Compnd;
    AjPStr Source;
    AjEPdbMethod Method;
    float Reso;
    ajuint Nmod;
    ajuint Nchn;
    AjPChain *Chains;
    AjPChar gpid;
    AjPList Groups;
    AjPList Water;
    ajuint Ngp;
    char Padding[4];
} AjOPdb;

#define AjPPdb AjOPdb*




/* @data AjPHetent ************************************************************
**
** AJAX Hetent object.
**
** Holds a single entry from a dictionary of heterogen groups.
**
** AjPHetent is implemented as a pointer to a C data structure.
**
** @alias AjSHetent
** @alias AjOHetent
**
** @attr  abv     [AjPStr]  3-letter abbreviation of heterogen.
** @attr  syn     [AjPStr]  Synonym.
** @attr  ful     [AjPStr]  Full name.
** @attr  cnt     [ajint]   No. of occurrences (files) of this heterogen in a
**                          directory.
** @attr  Padding [char[4]] Padding to alignment boundary
**
** @new     ajHetentNew Default Hetent constructor.
** @delete  ajHetentDel Default Hetent destructor.
**
** @@
******************************************************************************/

typedef struct AjSHetent
{
    AjPStr abv;
    AjPStr syn;
    AjPStr ful;
    ajint cnt;
    char Padding[4];
} AjOHetent;

#define AjPHetent AjOHetent*




/* @data AjPHet ***************************************************************
**
** AJAX Het object.
** Holds a dictionary of heterogen groups.
**
** AjPHet is implemented as a pointer to a C data structure.
**
** @alias AjSHet
** @alias AjOHet
**
** @attr  Entries  [AjPHetent*] Array of AJAX Heterogen Entries
** @attr  Number   [ajuint] Number of entries
** @attr  Padding  [char[4]] Padding to alignment boundary
**
** @new     ajHetNew Default Het constructor.
** @new     ajHetReadRawNew Het constructor from reading dictionary of
**          heterogen groups in raw format.
** @new     ajHetReadNew Het constructor from reading dictionary of
**          heterogen groups in embl-like format (see documentation for the
**          EMBASSY DOMAINATRIX package).
** @delete  ajHetDel Default Het destructor.
** @output  ajHetWrite Write Het object to file in embl-like format (see
**          documentation for the EMBASSY DOMAINATRIX package).
**
** @@
******************************************************************************/

typedef struct AjSHet
{
    AjPHetent *Entries;
    ajuint Number;
    char Padding[4];
} AjOHet;

#define AjPHet AjOHet*




/* @data AjPVdwres ************************************************************
**
** AJAX Vdwres object.
**
** Holds the Van der Waals radius for atoms in a residue
**
** AjPVdwres is implemented as a pointer to a C data structure.
**
** @alias AjSVdwres
** @alias AjOVdwres
**
** @attr  Id3  [AjPStr] 3 character residue identifier.
** @attr  Atm  [AjPStr*] Array of atom identifiers.
** @attr  Rad  [float*] Array of van der Waals radii.
** @attr  N    [ajuint] Number of atoms in residue.
** @attr  Id1  [char] Standard residue identifier or 'X' for unknown.
** @attr  Padding [char[3]] Padding to alignment boundary
**
** @new     ajVdwresNew Default Vdwres constructor.
** @delete  ajVdwresDel Default Vdwres destructor.
** @@
******************************************************************************/

typedef struct AjSVdwres
{
    AjPStr Id3;
    AjPStr *Atm;
    float *Rad;
    ajuint N;
    char Id1;
    char Padding[3];
} AjOVdwres;

#define AjPVdwres AjOVdwres*




/* @data AjPVdwall ************************************************************
**
** Ajax Vdwall object.
**
** Holds the Van der Waals radii for all types of protein atoms
**
** AjPVdwall is implemented as a pointer to a C data structure.
**
** @alias AjSVdwall
** @alias AjOVdwall
**
** @attr  Res     [AjPVdwres*] Array of Vdwres structures.
** @attr  N       [ajuint] Number of residues.
** @attr  Padding [char[4]] Padding to alignment boundary
**
** @new     ajVdwallNew Default Vdwall constructor.
** @new     ajVdwallReadNew Vdwall constructor from reading file in embl-like
**          format (see documentation for the EMBASSY DOMAINATRIX package).
** @delete  ajVdwallDel Default Vdwall destructor.
** @@
******************************************************************************/

typedef struct AjSVdwall
{
    AjPVdwres *Res;
    ajuint N;
    char Padding[4];
} AjOVdwall;

#define AjPVdwall AjOVdwall*




/* @data AjPCmap **************************************************************
**
** Ajax Cmap object.
**
** Holds a contact map and associated data for a protein domain / chain
** (intra or inter-chain contacts) or between a protein / domain and a
** ligand.  For ligand contacts, the first row / column only of the contact
** map is used.
**
** AjPCmap is implemented as a pointer to a C data structure.
**
**
** @alias AjSCmap
** @alias AjOCmap
**
**
** for intra-chain, inter-chain and chain-ligand contacts respectively.
** @attr  Id    [AjPStr]   Protein id code.
** @attr  Domid [AjPStr]   Domain id code.
** @attr  Ligid [AjPStr]   Ligand id code.
** @attr  Chn1  [ajint]    Chain number 1 (first chain)
** @attr  Chn2  [ajint]    Chain number 2 (second chain if available)
** @attr  Nres1 [ajint]    Number of residues in chain/domain 1
** @attr  Nres2 [ajint]    Number of residues in chain/domain 2
** @attr  Seq1  [AjPStr]   The sequence of the first domain or chain.
** @attr  Seq2  [AjPStr]   The sequence of the second domain or chain.
** @attr  Mat   [AjPUint2d] Contact map.
** @attr  Dim   [ajint]    Dimension of contact map.
** @attr  Ncon  [ajint]    No. of contacts (1's in contact map).
** @attr  en    [ajint]    Entry number.
** @attr  ns    [ajint]    No. of sites (ajLIGAND only)
** @attr  sn    [ajint]    Site number (ajLIGAND only)
** @attr  Type  [AjECmapType] AJAX Cmap Type enumeration
** @attr  Desc  [AjPStr]   Description of ligand (ajLIGAND only)
** @attr  Chid1 [char]     Chain identifier 1 (first chain)
** @attr  Chid2 [char]     Chain identifier 2 (second chain if available)
** @attr  Padding [char[6]] Padding to alignment boundary
**
**
** @new     ajCmapNew Default Cmap constructor.
** @new     ajCmapReadINew Cmap constructor from reading file in CON
**          (embl-like)format (see documentation for the EMBASSY DOMAINATRIX
**          package).
** @new     ajCmapReadCNew Cmap constructor from reading file in CON
**          format (see documentation for the EMBASSY DOMAINATRIX package).
** @new     ajCmapReadNew Cmap constructor from reading file in CON
**          format (see documentation for the EMBASSY DOMAINATRIX package).
** @new     ajCmapReadAllNew Constructs list of Cmap objects from reading file
**          in CON format (see documentation for the EMBASSY
**          DOMAINATRIX package).
** @delete  ajCmapDel Default Cmap destructor.
** @output  ajCmapWrite Write Cmap object to file in CON format.
**
** @@
******************************************************************************/

typedef struct AjSCmap
{
    AjPStr Id;
    AjPStr Domid;
    AjPStr Ligid;

    ajint Chn1;
    ajint Chn2;
    ajint Nres1;
    ajint Nres2;
    AjPStr Seq1;
    AjPStr Seq2;

    AjPUint2d Mat;
    ajint Dim;
    ajint Ncon;

    ajint en;
    ajint ns;
    ajint sn;
    AjECmapType Type;
    AjPStr Desc;
    char Chid1;
    char Chid2;
    char Padding[6];
} AjOCmap;

#define AjPCmap AjOCmap*




/* @data AjPPdbtosp ***********************************************************
**
** Ajax Pdbtosp object.
**
** Holds swissprot codes and accession numbers for a PDB code.
**
** AjPPdbtosp is implemented as a pointer to a C data structure.
**
**
**
** @alias AjSPdbtosp
** @alias AjOPdbtosp
**
**
**
** @attr  Pdb     [AjPStr]   PDB code
** @attr  Acc     [AjPStr*]  Accession numbers
** @attr  Spr     [AjPStr*]  Swissprot codes
** @attr  Number  [ajuint]   Number of entries for this pdb code
** @attr  Padding [char[4]]  Padding to alignment boundary
**
**
**
** @new     ajPdbtospNew Default Pdbtosp constructor.
** @new     ajPdbtospReadAllRawNew Pdbtosp constructor from reading swissprot-
**          pdb equivalence table in raw format.
** @new     ajPdbtospReadNew Pdbtosp constructor from reading file in
**          embl-like format (see documentation for the EMBASSY DOMAINATRIX
**          package).
** @new     ajPdbtospReadCNew Pdbtosp constructor from reading file in
**          embl-like format (see documentation for the EMBASSY DOMAINATRIX
**          package).
** @delete  ajPdbtospDel Default Pdbtosp destructor.
** @new     ajPdbtospReadAllNew Constructor for list of Pdbtosp objects from
**          reading file in embl-like format (see documentation for the
**          EMBASSY DOMAINATRIX package).
** @output  ajPdbtospWrite Write Pdbtosp object to file in embl-like format
**          (see documentation for the EMBASSY DOMAINATRIX package).
** @use     ajPdbtospArrFindPdbid Binary search for Pdb element over array
**          of Pdbtosp objects.
**
** @@
******************************************************************************/

typedef struct AjSPdbtosp
{
    AjPStr Pdb;
    AjPStr *Acc;
    AjPStr *Spr;
    ajuint Number;
    char Padding[4];
} AjOPdbtosp;

#define AjPPdbtosp AjOPdbtosp*




/* ========================================================================= */
/* =========================== public functions ============================ */
/* ========================================================================= */




/*
** Prototype definitions
*/


/* ======================================================================= */
/* ============================ Het objects ============================== */
/* ======================================================================= */

AjPHet ajHetNew(ajuint n);
void ajHetDel(AjPHet *Phet);




/* ======================================================================= */
/* ============================ Hetent object ============================ */
/* ======================================================================= */

AjPHetent ajHetentNew(void);
void ajHetentDel(AjPHetent *Phetent);




/* ======================================================================= */
/* ============================ Vdwall object ============================ */
/* ======================================================================= */

AjPVdwall ajVdwallNew(ajuint n);
void ajVdwallDel(AjPVdwall *Pvdwall);




/* ======================================================================= */
/* ============================ Vdwres object ============================ */
/* ======================================================================= */

AjPVdwres ajVdwresNew(ajuint n);
void ajVdwresDel(AjPVdwres *Pvdwres);




/* ======================================================================= */
/* ============================ Atom object ============================== */
/* ======================================================================= */

AjPAtom ajAtomNew(void);
void ajAtomDel(AjPAtom *Patom);
ajint ajAtomCopy(AjPAtom *Pto, const AjPAtom from);
ajint ajAtomListCopy(AjPList *Pto, const AjPList from);




/* ======================================================================= */
/* ========================== Residue object ============================= */
/* ======================================================================= */

AjPResidue ajResidueNew(void);
void ajResidueDel(AjPResidue *Presidue);
ajint ajResidueCopy(AjPResidue *Pto, const AjPResidue from);
AjBool ajResidueListCopy(AjPList *to, const AjPList from);

ajint ajResidueEnv1(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv2(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv3(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv4(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv5(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv6(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv7(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv8(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv9(const AjPResidue residue, char SEnv,
                    AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv10(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv11(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv12(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv13(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv14(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv15(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);
ajint ajResidueEnv16(const AjPResidue residue, char SEnv,
                     AjPStr *OEnv, AjPFile flog);

ajint ajResidueSSEnv(const AjPResidue residue, char *SEnv, AjPFile flog);




/* ======================================================================= */
/* ============================ Pdbtosp object =========================== */
/* ======================================================================= */

AjPPdbtosp ajPdbtospNew(ajuint n);
void ajPdbtospDel(AjPPdbtosp *Ppdbtosp);
ajint ajPdbtospArrFindPdbid(AjPPdbtosp const *array, ajint size,
                            const AjPStr identifier);




/* ======================================================================= */
/* ============================ Chain object ============================= */
/* ======================================================================= */

AjPChain ajChainNew(void);
void ajChainDel(AjPChain *Pchain);




/* ======================================================================= */
/* ============================ Pdb object =============================== */
/* ======================================================================= */

AjPPdb ajPdbNew(ajuint n);
void ajPdbDel(AjPPdb *Ppdb);
AjBool ajPdbCopy(AjPPdb *Pto, const AjPPdb from);
AjBool ajPdbChnidToNum(char identifier, const AjPPdb pdb, ajuint *chn);

AjPPdb ajPdbReadNew(AjPFile inf, ajint mode);
AjPPdb ajPdbReadAllModelsNew(AjPFile inf);
AjPPdb ajPdbReadFirstModelNew(AjPFile inf);
AjPPdb ajPdbReadoldNew(AjPFile inf);
AjPPdb ajPdbReadoldFirstModelNew(AjPFile inf);
AjBool ajPdbWriteAll(AjPFile out, const AjPPdb pdb);
AjBool ajPdbWriteSegment(AjPFile outf, const AjPPdb pdb,
                         const AjPStr seq, char chn,
                         const AjPStr domain,
                         AjPFile errf);
ajint ajPdbGetEStrideType(const AjPPdb obj, ajuint chn,
                          AjPStr *EStrideType);




/* ======================================================================= */
/* ====================== Het & Hetent objects =========================== */
/* ======================================================================= */

AjPHet ajHetReadRawNew(AjPFile inf);
AjPHet ajHetReadNew(AjPFile inf);
AjBool ajHetWrite(AjPFile outf, const AjPHet het, AjBool dogrep);




/* ======================================================================= */
/* ================ Vdwall, Vdwres object ================================ */
/* ======================================================================= */

AjPVdwall ajVdwallReadNew(AjPFile inf);




/* ======================================================================= */
/* =========================== Cmap object =============================== */
/* ======================================================================= */

AjPCmap ajCmapNew(ajuint n);
AjPCmap ajCmapReadCNew(AjPFile inf, char chn, ajint mod);
AjPCmap ajCmapReadINew(AjPFile inf, ajint chn, ajint mod);
AjPCmap ajCmapReadNew(AjPFile inf, ajint mode, ajint chn, ajint mod);
AjPList ajCmapReadAllNew(AjPFile inf);
void ajCmapDel(AjPCmap *Pcmap);
AjBool ajCmapWrite(AjPFile outf, const AjPCmap cmap);




/* ======================================================================= */
/* ======================== Pdbtosp object =============================== */
/* ======================================================================= */

AjPList ajPdbtospReadAllRawNew(AjPFile inf);
AjPPdbtosp ajPdbtospReadNew(AjPFile inf, const AjPStr entry);
AjPPdbtosp ajPdbtospReadCNew(AjPFile inf, const char *entry);
AjPList ajPdbtospReadAllNew(AjPFile inf);
AjBool ajPdbtospWrite(AjPFile outf, const AjPList list);

void ajPdbExit(void);

/*
** End of prototype definitions
*/




AJ_END_DECLS

#endif /* !AJPDB_H */