コード例 #1
0
 def __init__(self, id):
     """
     Arguments:
     o id - string, atom name
     """
     self.last_occupancy=-1
     DisorderedEntityWrapper.__init__(self, id)
コード例 #2
0
 def __init__(self, id):
     """
     Arguments:
     o id - string, atom name
     """
     self.last_occupancy = -999999
     DisorderedEntityWrapper.__init__(self, id)
コード例 #3
0
ファイル: Atom.py プロジェクト: someshchaturvedi/biopython
    def __init__(self, id):
        """Create DisorderedAtom.

        Arguments:
         - id - string, atom name
        """
        # TODO - make this a private attribute?
        self.last_occupancy = -999999
        DisorderedEntityWrapper.__init__(self, id)
コード例 #4
0
ファイル: Atom.py プロジェクト: Benjamin-Lee/biopython
    def __init__(self, id):
        """Create DisorderedAtom.

        Arguments:
         - id - string, atom name
        """
        # TODO - make this a private attribute?
        self.last_occupancy = -999999
        DisorderedEntityWrapper.__init__(self, id)
コード例 #5
0
ファイル: Residue.py プロジェクト: rtviii/biopython
 def __init__(self, id):
     """Initialize the class."""
     DisorderedEntityWrapper.__init__(self, id)
コード例 #6
0
 def __init__(self, id):
     DisorderedEntityWrapper.__init__(self, id)
コード例 #7
0
ファイル: Residue.py プロジェクト: HuttonICS/biopython
 def __init__(self, id):
     """Initialize the class."""
     DisorderedEntityWrapper.__init__(self, id)