00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #ifndef DH_WRITEPOCKET
00034 #define DH_WRITEPOCKET
00035
00036
00037
00038 #include <math.h>
00039 #include <stdio.h>
00040 #include <stdlib.h>
00041
00042 #include "voronoi.h"
00043 #include "pocket.h"
00044 #include "writepdb.h"
00045 #include "utils.h"
00046 #include "asa.h"
00047
00048
00049
00050
00051
00052 void write_pockets_single_pdb(const char out[], s_pdb *pdb, c_lst_pockets *pockets) ;
00053 void write_pockets_single_pqr(const char out[], c_lst_pockets *pockets);
00054 void write_mdpockets_concat_pqr(FILE *f, c_lst_pockets *pockets);
00055
00056 void write_each_pocket(const char out_path[], c_lst_pockets *pockets) ;
00057 void write_pocket_pdb(const char out[], s_pocket *pocket) ;
00058 void write_pocket_pqr(const char out[], s_pocket *pocket) ;
00059
00060 void write_pdb_atoms(FILE *f, s_atm *atoms, int natoms) ;
00061
00062 void write_each_pocket_for_DB(const char out_path[], c_lst_pockets *pockets,s_pdb *pdb);
00063 void write_pocket_pqr_DB(const char out[], s_pocket *pocket);
00064 void write_pocket_pdb_DB(const char out[], s_pocket *pocket,s_pdb *pdb);
00065
00066 #endif