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