source: util/src/RestorePDBfromGrape.py.in@ c03ca6

Last change on this file since c03ca6 was e1a46d, checked in by Frederik Heber <heber@…>, 16 years ago

All of my python script put into ESPACK and adapted with @PYTHON@ and so on.

  • Property mode set to 100755
File size: 253 bytes
Line 
1#!@PYTHON@
2#
3# Takes all grape snapshot files and converts info into PDB files
4
5import sys, random, math, re
6wrerr=sys.stderr.write
7wrout=sys.stdout.write
8
9# check arguments
10if len(sys.argv) < 2:
11 print "Usage: "+sys.argv[0]+" <prefix>"
12 sys.exit(1)
13
14
Note: See TracBrowser for help on using the repository browser.