We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Thank you for making this great package. First of all this is not about issue in the code. But a usage question.
AFAIK the key parameters in Peptide builder is the backbone angle parameter. As defined by geo.phi and geo.psi in the code below.
geo.phi
geo.psi
from PeptideBuilder import Geometry import PeptideBuilder import Bio.PDB # Useful description about PeptideBuilder, it's conceptual basis # https://peerj.com/articles/80/ def split(word): return [char for char in word] wanted_peptide = "GGGGGG" res = split(wanted_peptide) geo = Geometry.geometry(res[0]) geo.phi = -60 geo.psi_im1 = -40 structure = PeptideBuilder.initialize_res(geo) nres = res[1:len(res)] for r in nres: # print(r) rgeo = Geometry.geometry(r) rgeo.phi = -60 rgeo.psi_im1 = -40 PeptideBuilder.add_residue(structure, rgeo) PeptideBuilder.add_terminal_OXT(structure) out = Bio.PDB.PDBIO() out.set_structure(structure) out.save("mypeptide.pdb")
My question are:
The final aim for me to construct the 3d model, is to dock it to some existing protein structure.
Thanks and truly hope from you again.
G.V.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Thank you for making this great package.
First of all this is not about issue in the code. But a usage question.
AFAIK the key parameters in Peptide builder is the backbone angle parameter.
As defined by
geo.phi
andgeo.psi
in the code below.My question are:
geo.phi
andgeo.psi
?The final aim for me to construct the 3d model, is to dock it to some existing
protein structure.
Thanks and truly hope from you again.
G.V.
The text was updated successfully, but these errors were encountered: