Skip to content

Commit

Permalink
property fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
Pranavkhade committed Feb 12, 2020
1 parent 5611407 commit 081b3f3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 12 deletions.
Binary file added dist/py-packman-1.1.0.tar.gz
Binary file not shown.
10 changes: 0 additions & 10 deletions packman/molecule/atom.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,70 +28,60 @@ def __init__(self,id,AtomName,Coordinates,Occupancy,bfactor,Element,Charge,paren
self.__Element=Element

#Get Functions
@property
def get_id(self):
"""
:returns: ID of an 'packman.molecule.atom.Atom' object
"""
return self.__id

@property
def get_name(self):
"""
:returns: Name of an 'Atom' object
"""
return self.__AtomName

@property
def get_alternatelocationindicator(self):
"""
:returns: Alternate Location Indicator
"""
return self.__AlternateLocationIndicator

@property
def get_parent(self):
"""
:returns: Parent residue of an 'Atom' Object. (If available)
"""
return self.__parent

@property
def get_location(self):
"""
:returns: Cartesian Coordinates of an 'Atom'
"""
return self.__Coordinates

@property
def get_occupancy(self):
"""
:returns: Occupancy of an 'Atom'
"""
return self.__Occupancy

@property
def get_bfactor(self):
"""
:returns: B-Factor value of an 'Atom'
"""
return self.__bfactor

@property
def get_segmentidentifier(self):
"""
:returns: Segment Identifier of an 'Atom'
"""
return self.__SegmentIdentifier

@property
def get_element(self):
"""
:returns: Element of an 'Atom'
"""
return self.__Element

@property
def get_domain_id(self):
"""
:returns: Domain ID of the parent Residue
Expand Down
2 changes: 1 addition & 1 deletion py_packman.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: py-packman
Version: 1.0.0
Version: 1.1.0
Summary: A software package for molecular PACKing and Motion ANalysis (PACKMAN)
Home-page: https://github.com/Pranavkhade/PACKMAN
Author: Pranav Khade
Expand Down
2 changes: 2 additions & 0 deletions py_packman.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ README.md
setup.py
packman/__init__.py
packman/__main__.py
packman/anm/__init__.py
packman/anm/anm.py
packman/apps/__init__.py
packman/apps/predict_hinge.py
packman/bin/PACKMAN.py
Expand Down
2 changes: 1 addition & 1 deletion py_packman.egg-info/requires.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ numpy
scipy
networkx
mlxtend
sklearn
scikit-learn

0 comments on commit 081b3f3

Please sign in to comment.