| 
      babel-1.6
      | 
     
    
     | 
Makefile, 
README.1ST, 
addh.c, 
addh2.c, 
aromatic.c, 
assbnd.c, 
asstypes.c, 
babel.h, 
bblmacs.h, 
bblmast.h, 
bbltyp.h, 
block.c, 
bndord.c, 
bo.c, 
buildct.c, 
combine.c, 
convert.c, 
delatms.c, 
delh2o.c, 
element.lis, 
filesrch.c, 
fileutil.c, 
gastchg.c, 
gauss.hdr, 
htoend.c, 
int2cart.c, 
intcart.c, 
menus.c, 
miniums.c, 
molwt.c, 
new.lis, 
nodummy.c, 
orient.c, 
precip.c, 
printbad.c, 
progress.c, 
psgvb.hdr, 
quanta.lis, 
rdalch.c, 
rdampout.c, 
rdbalst.c, 
rdbgf.c, 
rdboogie.c, 
rdc3d.c, 
rdcacao.c, 
rdcadpac.c, 
rdcharmm.c, 
rdcsd.c, 
rddock.c, 
rddpdb.c, 
rdelmnts.c, 
rdfdat.c, 
rdfeat.c, 
rdfract.c, 
rdg96.c, 
rdgamout.c, 
rdgauout.c, 
rdgzmat.c, 
rdhin.c, 
rdinsite.c, 
rdint.c, 
rdirc.c, 
rdisis.c, 
rdm3d.c, 
rdmacmod.c, 
rdmacmol.c, 
rdmdl.c, 
rdmicro.c, 
rdmm2.c, 
rdmm2in.c, 
rdmm3.c, 
rdmolen.c, 
rdmopac.c, 
rdmopcrt.c, 
rdpcmod.c, 
rdpdb.c, 
rdprep.c, 
rdpsgout.c, 
rdpsgvin.c, 
rdquanta.c, 
rdschak.c, 
rdshelx.c, 
rdsmiles.c, 
rdspart.c, 
rdspmm.c, 
rdspsemi.c, 
rdsybmol.c, 
rdsybyl.c, 
rdtypes.c, 
rdunichm.c, 
rdwiz.c, 
rdxed.c, 
rdxyz.c, 
renum.c, 
report.c, 
rings.c, 
ringutil.c, 
sets.c, 
smilesto.c, 
spline.c, 
strngutl.c, 
tokenst.c, 
tosmiles.c, 
tree.c, 
typbybo.c, 
types.lis, 
umslist.c, 
utils.c, 
vectors.c, 
wralch.c, 
wrbalst.c, 
wrbgf.c, 
wrbmin.c, 
wrbox.c, 
wrc3d.c, 
wrcacao.c, 
wrcache.c, 
wrcacint.c, 
wrchdrw.c, 
wrcontmp.c, 
wrcsr.c, 
wrcssr.c, 
wrdock.c, 
wrdpdb.c, 
wrfeat.c, 
wrfh.c, 
wrg96.c, 
wrgamess.c, 
wrgau.c, 
wrgaucrt.c, 
wrhin.c, 
wricon.c, 
wrint.c, 
wrisis.c, 
wrm3d.c, 
wrmaccs.c, 
wrmacmod.c, 
wrmcmol.c, 
wrmdl.c, 
wrmicro.c, 
wrmimic.c, 
wrmiv.c, 
wrmm2.c, 
wrmm3.c, 
wrmopac.c, 
wrpcmod.c, 
wrpdb.c, 
wrpsgv.c, 
wrpsgvz.c, 
wrsmiles.c, 
wrspart.c, 
wrsybmol.c, 
wrsybyl.c, 
wrtinker.c, 
wrtorlst.c, 
wrunichm.c, 
wrwiz.c, 
wrxed.c, 
wrxyz.c
      | 
     
    
   | 
  
 
   | 
  
/*****
This file is part of the Babel Program
Copyright (C) 1992-96 W. Patrick Walters and Matthew T. Stahl 
All Rights Reserved 
All Rights Reserved 
All Rights Reserved 
All Rights Reserved 
For more information please contact :
babel@mercury.aichem.arizona.edu
--------------------------------------------------------------------------------
FILE : wrpdb.c
AUTHOR(S) : Pat Walters
DATE : 1-93
PURPOSE : Routines to write a Brookhaven PDB type file.
******/
#include "bbltyp.h"
int
  write_pdb(FILE *file1, ums_type *mol)
{
  int i,j;
  char type_name[5], padded_name[5];
  int result;
  char the_res[5];
  int res_num;
  fprintf(file1,"HEADER    PROTEIN\n");
  if (strlen(Title) > 0)
    fprintf(file1,"COMPND    %s \n",Title);
  else
    fprintf(file1,"COMPND    UNNAMED\n");
  fprintf(file1,"AUTHOR    GENERATED BY BABEL %s\n",BABEL_VERSION);
  for (i = 1; i <= Atoms; i ++)
  {
    result =  get_output_type(i,"XYZ",Type(i),type_name,all_caps);
    if (HasResidues)
    {
/*
      if ((ChainNum(i) > 1) && (ChainNum(i) > ChainNum(i-1)))
	fprintf(file1,"TER\n");
*/
      strcpy(the_res,trim_spaces(ResName(i)));
      strcpy(type_name,trim_spaces(AtmId(i)));
      res_num = ResNum(i);
    }
    else
    {
      strcpy(the_res,"UNK");
      sprintf(padded_name,"%2s",type_name);
      strcpy(type_name,padded_name);
      res_num = 1;
    }
    if (HasResidues)
    {
      fprintf(file1,"ATOM   %4d  %-4s%3s%3s%3d   %9.3f%8.3f%8.3f  1.00  0.00 \n",
	      i,
	      type_name,
	      the_res,
	      "",
	      res_num,
	      X(i),
	      Y(i),
	      Z(i));
    }
    else
    {
      fprintf(file1,"ATOM   %4d %-5s%3s%3s%3d   %9.3f%8.3f%8.3f  1.00  0.00 \n",
	      i,
	      type_name,
	      the_res,
	      "",
	      res_num,
	      X(i),
	      Y(i),
	      Z(i));
    }
  }
  for (i = 1; i <= Atoms; i ++)
  {
    if (Valence(i) > 0)
      {
	fprintf(file1,"CONECT %4d ",i);
	fprintf(file1,"%4d",Connection(i,0));
	for (j = 1; j < Valence(i); j ++)
	  {
	    fprintf(file1,"%5d",Connection(i,j));
	  }
	fprintf(file1,"\n");
      }
  }
  fprintf(file1,"MASTER        0    0    0    0    0    0    0    0 ");
  fprintf(file1,"%4d    0 %4d    0\n",Atoms,Atoms);          
  fprintf(file1,"END\n");
  return(TRUE);
}
int 
write_idatm(FILE *file1,ums_type *mol)
{
  int count;
  fprintf(file1,"REMARK\n");
  for(count = 1;count <= Atoms; count++)
  {
    fprintf(file1,"ATOM %6d %-4s PXM    64   %9.3f%8.3f%8.3f        \n",
	    count,
	    Type(count),
	    X(count),
	    Y(count),
	    Z(count));
  }
  fprintf(file1,"TER\n");
  return(TRUE);
}
void 
assign_pdb_number(pdb_type_rec *pdb_types, int count)
{
int i;
if (count == 1)
	pdb_types[count].number = 1;
else
for (i = count - 1; i >= 1; i --)
{
if (EQ(pdb_types[count].name,pdb_types[i].name))
	{
	pdb_types[count].number = pdb_types[i].number + 1;
	break;
	}
else
	pdb_types[count].number = 1;
}
}
   |