Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
ParmEd
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ATB-Dependencies
ParmEd
Commits
2e30cb78
Commit
2e30cb78
authored
Jul 07, 2015
by
Jason Swails
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes and tweaks to xparmed
parent
10a8f50f
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
scripts.py
parmed/scripts.py
+1
-1
exceptions.py
parmed/tools/exceptions.py
+1
-1
guiactions.py
parmed/tools/gui/guiactions.py
+1
-1
guitools.py
parmed/tools/gui/guitools.py
+1
-1
xparmed
scripts/xparmed
+1
-1
No files found.
parmed/scripts.py
View file @
2e30cb78
...
@@ -211,7 +211,7 @@ def guiapp():
...
@@ -211,7 +211,7 @@ def guiapp():
from
optparse
import
OptionParser
from
optparse
import
OptionParser
from
os.path
import
exists
,
split
from
os.path
import
exists
,
split
from
parmed.tools.exceptions
import
ParmError
from
parmed.tools.exceptions
import
ParmError
from
parmed
.tools
import
__version__
from
parmed
import
__version__
from
parmed.tools.gui.guitools
import
ParmedApp
from
parmed.tools.gui.guitools
import
ParmedApp
from
parmed.tools.gui.guifiletools
import
file_chooser
from
parmed.tools.gui.guifiletools
import
file_chooser
from
parmed.tools.logos
import
Logo
from
parmed.tools.logos
import
Logo
...
...
parmed/tools/exceptions.py
View file @
2e30cb78
""" Exceptions used in parmed
.py
"""
""" Exceptions used in parmed
script
"""
from
sys
import
stderr
from
sys
import
stderr
from
parmed.exceptions
import
ParmedError
,
ParmedWarning
,
InputError
from
parmed.exceptions
import
ParmedError
,
ParmedWarning
,
InputError
...
...
parmed/tools/gui/guiactions.py
View file @
2e30cb78
...
@@ -18,7 +18,7 @@ def gui_action_dispatcher(root, amber_prmtop, action_name, messages):
...
@@ -18,7 +18,7 @@ def gui_action_dispatcher(root, amber_prmtop, action_name, messages):
if
not
hasattr
(
_guiactions
,
action_name
.
lower
()):
if
not
hasattr
(
_guiactions
,
action_name
.
lower
()):
showerror
(
'Not Implemented.'
,
action_name
+
showerror
(
'Not Implemented.'
,
action_name
+
' is not implemented in xParmEd! Use parmed
.py
instead.'
)
' is not implemented in xParmEd! Use parmed instead.'
)
return
None
return
None
# Call the function to establish our action
# Call the function to establish our action
...
...
parmed/tools/gui/guitools.py
View file @
2e30cb78
"""
"""
The GUI components of xparmed
.py
The GUI components of xparmed
"""
"""
from
__future__
import
division
from
__future__
import
division
from
parmed.utils.six
import
iteritems
from
parmed.utils.six
import
iteritems
...
...
scripts/xparmed
View file @
2e30cb78
#!/usr/bin/env python
#!/usr/bin/env python
from
parmed.scripts
import
cl
app
from
parmed.scripts
import
gui
app
guiapp
()
guiapp
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment