IMP  2.0.1
The Integrative Modeling Platform
cnmultifit.py
1 #!/usr/bin/env python
2 
3 import IMP
4 
5 def main():
6  c = IMP.CommandDispatcher(short_help='Symmetric MultiFit.',
7  long_help='Fit symmetric complexes '
8  'into a density map.',
9  module_name="IMP.cnmultifit")
10  c.main()
11 
12 if __name__ == '__main__':
13  main()