IMP logo
IMP Manual  for IMP version 2.10.1
Frequently asked questions (FAQ)

Table of Contents

General

How do I make my script run faster?

Why can't I clone a Particle?

The short answer is: "because no one knows how to do it safely". The complication is that the attributes of various particles may have relationships to one another that would be violated by the cloning process. For example, a Particle attribute in a Particle could be part of a bond, in which case the bond particle must also be cloned and the attribute in the new particle must point to the new bond, or it could be a pointer to a particle which keeps track of all of the atoms in the system, in which case the attribute value should be copied unchanged. A clone function would have no way of knowing which should be done.

We suggest that you either

  • call your initialization code more than once (to create two copies of the set of particles):
      protein_0= create_protein("my_protein_name")
      protein_1= create_protein("my_protein_name")
    
  • use the IMP.atom.create_clone() function to clone a molecular hierarchy.

C++

What is the difference between the two functions for adding Particle attributes?

Restraints are not allowed to add/remove/change attributes during restraint evaluation. The reason for this is that the order of evaluation of restraints is not defined and if restraints could change attributes, the score could depend on what order they were evaluated in. However, in certain cases it makes sense to cache computations in the particle so as to avoid having to recompute it next time (or in a different restraint). The (undocumented) method add_cache_attribute() provides a means to do that. The assumptions made are that

  • any restraint that writes it should write an equivalent value
  • it should get cleared if anything "significant" (a still vague concept) in the particle changes.

One usage of it currently is for the collision detection hierarchies used with rigid bodies. This hierarchy is computed on demand (for example when trying to evaluate a distance pair score on a pair of rigid bodies). Any time the rigid body is changed (eg the internal coordinates of a member are changed), the hierarchy gets cleared out and must be recomputed the next time.

What is this XXXEXPORT stuff?

In IMP we only export selected functions and classes from the dynamically linked libraries. This is required for things to work on Windows; while it is not strictly necessary on other platforms it gives slightly faster code. As a result, each class/function that is used outside of the library needs to be marked with IMPMODULENAMEEXPORT. The rules for doing this are as follows:

  • Any class which has any methods which are implemented in a .cpp file must be declared as class IMPMODULENAMEEXPORT ClassName: public BaseClass{};
  • Any function whose implementation is in a .cpp file must be declared as IMPMODULENAMEEXPORT ReturnType function_name(ArgumentType arg_name);
  • Non-template functions defined entirely in a header must be declared inline and NOT have an IMPMODULENAMEEXPORT
  • Template functions or classes must NOT have IMPMODULENAMEEXPORT tags

Note that the pickiest compiler about this is the Visual Studio compiler, so the fact that your code works with gcc does not guarantee it is correct.

How do I use CPPCheck with IMP

cppcheck --enable=all . -I../debug/build/include --template="{file}:{line}:{severity},{id},{message}"

What does this mean? IMP.InternalException: Internal check failure: Particle BLAH missing required attributes for decorator MyDecorator

You are trying to decorate a particle before setting it up as an instance of the decorator. Use MyDecorator.setup_particle(blah) and now you can decorate: MyDecorator(blah)

SWIG

What files do I have to edit to connect C++ to Python?

The swig.i-in file that you will find under mymodule/pyext.

Why is SWIG telling me that a class is not defined?

The order of the includes in the swig.i-in matters. If a class uses code that is in another file, then you should put the latter first (note also that SWIG does not recursively follow #includes inside the .h files you include). For example, if your class EnergyTermsRestraint requires EnergyTerms these lines in the swig.i-in must appear in this order:

%include "IMP/mymodule/EnergyTerms.h"
%include "IMP/mymodule/EnergyTermsRestraint.h"

git

What are some resources for getting started with GIT?

One of its strengths is that there are excellent references, and Google will find you good answers to almost any question you have (many on Stack Overflow). Some good overviews that IMP users have liked can be found at:

In addition, help for any git command can be found by doing git help <command>.

What are the key git commands to use?

Show the branches in the log git log --graph --all --decorate

Show which words change in the diff git diff --word-diff

Clean out unknown files from repository git clean -f -d -x

Use a nice interface when there are merge conflicts git mergetool