IMP
2.0.0
The Integrative Modeling Platform
Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
IMP
IMP Documentation
Application Index
Argument Index
Class Examples
Modeling of GroEL with cnmultifit
Modeling of 3sfd with EMageFit
EMageFit protocol
EMageFit scripts and tools
Factory Index
Determination of a Nup133 structure with FoXS
Function Examples
Example design discussion
Developer Guide
Change History
Installation
Introduction
Mailing lists
Multithreaded evaluation using OpenMP
Integrative docking utility programs
Docking of PCSK9 with idock
Dependencies between objects
Module Index
Modeling of 3sfd with multifit
Deprecated List
Modules
Namespaces
Classes
Files
Examples
algebra/geometry.py
algebra/grid_space.py
atom/assess_dope.py
atom/brownian_statistics.py
atom/cg_pdb.py
atom/charmm_forcefield.py
atom/charmm_forcefield_verbose.py
atom/dope_and_excluded_volume.cpp
atom/load_protein_restrain_bonds.py
atom/markers.py
atom/molecular_hierarchy.py
atom/rigid_brownian_dynamics.py
atom/score_protein_with_ligand.py
atom/structure_from_sequence.py
base/log.py
container/bipartite_nonbonded_interactions.py
container/connectivity.py
container/filter_close_pairs.py
container/nonbonded_interactions.py
container/restrain_in_sphere.py
core/connectivity_restraint.py
core/cover_particles.py
core/custom_hierarchy.py
core/excluded_volume.py
core/incremental_mc.py
core/ms_connectivity_restraint.py
core/optimize_balls.py
core/pair_restraint.py
core/randomize_rigid_body.py
core/restrain_diameter.py
core/restrain_minimum_distance.py
core/rigid_bodies.py
core/rigid_collisions.py
core/symmetry.py
core/XYZ_Decorator.py
core/XYZR_Decorator.py
display/basic_geometry.py
display/display_log.py
display/displaying_ensembles.py
display/show_particles_as_spheres.py
domino/custom_filter.py
domino/domino_approach.py
domino/interactive.py
domino/interactive_with_containers.py
domino/marina_party.py
domino/merge_tree.py
domino/multiscale.py
domino/restraint_cache.py
domino/rigid_body_excluded_volume.py
domino/save_assignments.py
domino/six_particles_optimization.py
em/analyze_convergence.py
em/cube.py
em/fit_restraint.py
em/generate_density_map_of_fixed_dimension.py
em/local_fitting.py
em/pdb2density.py
em2d/clustering_of_pdb_models.py
em2d/collision_cross_section.py
em2d/em_images_conversion.py
em2d/optimize_em2d_with_montecarlo.py
example/range_restriction.py
gsl/simplex.py
kernel/basic_optimization.py
kernel/chain.py
kernel/dependency_graph.py
kernel/dock_with_crosslinks.py
kernel/graph.py
kernel/nup84.py
kernel/setup.py
kernel/write_a_restraint.py
kernel/write_an_optimizer_state.py
kmeans/kmeans_example.py
misc/decay.py
modeller/imp_restraints_in_modeller.py
modeller/load_modeller_model.py
modeller/modeller_restraints_in_imp.py
modules/rotamer/examples/rotamer_pdb.py
parallel/local_distance.py
parallel/tasks.py
restrainer/basic_display.py
restrainer/basic_setup.py
restrainer/em_restraint.py
restrainer/nup84_complex_in_bead_representation.py
restrainer/rigid_body_and_excluded_volume_restraint.py
restrainer/saxs_restraint.py
restrainer/simple_connectivity_on_molecules.py
restrainer/simple_connectivity_on_rigid_bodies.py
restrainer/simple_diameter.py
restrainer/simple_distance.py
restrainer/simple_em_fit.py
restrainer/simple_excluded_volume.py
rmf/geometry.py
rmf/link.py
rmf/multiresolution.py
rmf/pdb.py
rmf/simulation.py
rotamer/rotamer_pdb.py
saxs/profile.py
saxs/profile_fit.py
statistics/kmeans.py
statistics/write_a_metric.py
atom/structure_from_sequence.py
An atomic protein structure is created from primary (amino-acid) sequence.
1
## \example atom/structure_from_sequence.py
2
## An atomic protein structure is created from primary (amino-acid) sequence.
3
##
4
5
import
IMP.atom
6
7
# Use the CHARMM all-atom (i.e. including hydrogens) topology and parameters
8
topology =
IMP.atom.CHARMMTopology
(
IMP.atom.get_all_atom_CHARMM_parameters
())
9
10
# Create a single chain of amino acids and apply the standard C- and N-
11
# termini patches
12
topology.add_sequence(
'IACGACKPECPVNIIQGS'
)
13
topology.apply_default_patches()
14
15
# Make an IMP Hierarchy (atoms, residues, chains) that corresponds to
16
# this topology
17
m =
IMP.Model
()
18
h = topology.create_hierarchy(m)
19
20
# Generate coordinates for all atoms in the Hierarchy, using CHARMM internal
21
# coordinate information (an extended chain conformation will be produced).
22
# Since in some cases this information can be incomplete, better results will
23
# be obtained if the atom types are assigned first and the CHARMM parameters
24
# file is loaded, as we do here, so missing information can be filled in.
25
# It will still work without that information, but will approximate the
26
# coordinates.
27
topology.add_atom_types(h)
28
topology.add_coordinates(h)
29
30
# Hierarchies in IMP must have radii
31
IMP.atom.add_radii
(h)
32
33
# Write out the final structure to a PDB file
34
IMP.atom.write_pdb
(h,
'structure.pdb'
)