File: stdconntable.h

package info (click to toggle)
king-probe 2.13.110909-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 700 kB
  • ctags: 771
  • sloc: ansic: 10,687; makefile: 40; python: 18
file content (24 lines) | stat: -rw-r--r-- 1,085 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* name: stdconntable.h                            */
/* author: J. Michael Word Date Written: 11/15/98  */
/* purpose: describes the bonding connectivies for */
/*          each std amino acid residue or         */
/*          nucleic acid base                      */

/*****************************************************************/
/* NOTICE: This is free software and the source code is freely   */
/* available. You are free to redistribute or modify under the   */
/* conditions that (1) this notice is not removed or modified    */
/* in any way and (2) any modified versions of the program are   */
/* also available for free.                                      */
/*               ** Absolutely no Warranty **                    */
/* Copyright (C) 1999 J. Michael Word                            */
/*****************************************************************/

#ifndef STDCONNTABLE_H
#define STDCONNTABLE_H 1

void initStdConnTable();
char * searchForStdBondingPartner(char *resname, char *atomname, int isAhydrogen);
void dumpStdConnTable(FILE * outf);

#endif