-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from choderalab/cleanup
[WIP] Started adding docstrings and cleaning up.
- Loading branch information
Showing
155 changed files
with
1,008 additions
and
476 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
language: c | ||
|
||
install: | ||
- echo "install" | ||
- echo "$python" | ||
- tools/ci/apt_install.sh | ||
- $python -V | ||
- tools/ci/py_install.sh | ||
|
||
script: | ||
- echo "script" | ||
- $python -V | ||
- sudo $python setup.py -q install | ||
- nosetests |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
#!/usr/local/bin/env python | ||
#!/usr/bin/env python | ||
|
||
""" | ||
YANK, a package for alchemical free energy calculations using pyOpenMM and OpenMM. | ||
gaff2xml, a utility for using GAFF files in OpenMM | ||
COPYRIGHT AND LICENSE | ||
@author John D. Chodera <[email protected]> | ||
@author Kim M. Branson <[email protected]> | ||
@author Randall J. Radmer <[email protected]> | ||
@author Kyle A. Beauchamp <[email protected]> | ||
All code in this repository is released under the GNU General Public License. | ||
|
@@ -25,4 +24,4 @@ | |
""" | ||
|
||
from gaff2xml import amber_parser, gafftools, system_checker | ||
from gaff2xml import amber_parser, gafftools, system_checker, utils |
Oops, something went wrong.