Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(8) | Call(0) | Derive(4) | Import(4)
src/b/i/biopython-1.63/Bio/PDB/Residue.py biopython(Download)
# My Stuff from Bio.PDB.PDBExceptions import PDBConstructionException from Bio.PDB.Entity import Entity, DisorderedEntityWrapper
class DisorderedResidue(DisorderedEntityWrapper): """ DisorderedResidue is a wrapper around two or more Residue objects. It is used to represent point mutations (e.g. there is a Ser 60 and a Cys 60 residue, each with 50 % occupancy).
src/b/i/biopython-HEAD/Bio/PDB/Residue.py biopython(Download)
# My Stuff from Bio.PDB.PDBExceptions import PDBConstructionException from Bio.PDB.Entity import Entity, DisorderedEntityWrapper
class DisorderedResidue(DisorderedEntityWrapper): """ DisorderedResidue is a wrapper around two or more Residue objects. It is used to represent point mutations (e.g. there is a Ser 60 and a Cys 60 residue, each with 50 % occupancy).
src/b/i/biopython-1.63/Bio/PDB/Atom.py biopython(Download)
import copy from Bio.PDB.Entity import DisorderedEntityWrapper from Bio.PDB.PDBExceptions import PDBConstructionWarning from Bio.PDB.Vector import Vector
class DisorderedAtom(DisorderedEntityWrapper): """ This class contains all Atom objects that represent the same disordered atom. One of these atoms is "selected" and all method calls not caught by DisorderedAtom are forwarded to the selected Atom object. In that way, a
src/b/i/biopython-HEAD/Bio/PDB/Atom.py biopython(Download)
import copy from Bio.PDB.Entity import DisorderedEntityWrapper from Bio.PDB.PDBExceptions import PDBConstructionWarning from Bio.PDB.Vector import Vector
class DisorderedAtom(DisorderedEntityWrapper): """ This class contains all Atom objects that represent the same disordered atom. One of these atoms is "selected" and all method calls not caught by DisorderedAtom are forwarded to the selected Atom object. In that way, a