#!/usr/bin/env ccp4-python # This just calls (in fact just imports) ../crank2.py. # It only provides the convenience of the crank2 binary in the bin directory, without the need # to mess with PYTHONPATH or to add the crank2 directory to the PATH (only crank2/bin is needed). # Thus not needed but convenient for the command line use. Not used to call crank2 from the gui. import sys,os sys.path.insert(0,os.path.join(os.path.dirname(__file__), os.pardir)) import crank2 crank2.parse.parse().ParseAndRun()