I think such functionality would be a reasonable candidate for a new
module. Especially as core is getting very large and cluttered.
Perhaps IMP.indexes (or .indices if people prefer that spelling).
On Dec 9, 2008, at 4:58 PM, Keren Lasker wrote:
looks reasonable.
Q1: can you indicate the relationship between the attributes ( and/
or) ?
Q2: can it support range ( all residues in a range for example)
Q3: how do you support hierarchy? should the container hold all the
leaves ?
On Tue, 9 Dec 2008, Daniel Russel wrote:
So does something like this look to be along the lines of what you
all have in mind?
//! Create a map from attributes to particles
/** The map can be built with up to 4 different attributes of type
Int or
String. Particles missing the named attributes are skipped.
*/
template <class TypeA, class TypeB=NullType, class TypeC=NullType,
class TypeD=NullType>
class MapScoreState: public RefCountedObject {
public:
typedef fancy_crap Key;
typedef more_fancy_crap Value;
//! Initialize the table to index on the attributes in at
/** \param[in] pcs The container of particles to index in the table
\param[in] at The set of attributes to index on*/
MapScoreState(ParticleContainer *pcs, const Attributes &at);
//! Get the particles matching v
Particles get_particles(const Values &v) const;
//! Get the particle matching v
/** \throw InvalidStateExpeption if more than one particle matches
*/
Particle *get_particle(const Values &v) const;
//! Also would have the score state update method to force an update
};
typedef MapScoreState<Int> AtomIndexMap;
AtomIndexMap *myindexmap= new AtomIndexMap(myparticles,
AtomIndexMap::Key(AtomDecorator::get_index_key()));
myindexmap->before_evaluate(-1); // we might want to add an update
method to ScoreState
For python, we would have to create a bunch of the maps with pre-
chosen types (i.e. IntMapScoreState, IntStringMapScoreState).
On Dec 9, 2008, at 11:08 AM, Dina Schneidman wrote:
but you don't always want to update you indexing before/after
scoring
On Tue, Dec 9, 2008 at 11:06 AM, Daniel Russel <drussel@gmail.com>
wrote:
Score states don't have anything to do with scoring either :-)
they are just
updated before scoring since that is when things can change during
optimization. They used to just be called States which is perhaps
clearer.
On Dec 9, 2008, at 10:56 AM, "Dina Schneidman"
<duhovka@gmail.com> wrote:
maybe it's a simple solution in order to have it in a model, but
conceptually this indexing has nothing to do with scoring
On Tue, Dec 9, 2008 at 10:42 AM, Daniel Russel
<drussel@gmail.com> wrote:
From what I understand, what you want is a way of specifying
what indexes
we
want build (not a way of specifying queries). We could easily
provide
ScoreStates for indexes based on:
- set of discrete valued attributes
- D-dimensional interval queries on float values
On Dec 9, 2008, at 9:55 AM, Keren Lasker wrote:
Daniel - we all know how to run for loops ;)
I just thought it make sense to have something more efficient :)
On Tue, 9 Dec 2008, Daniel Russel wrote:
On Dec 9, 2008, at 9:29 AM, Keren Lasker wrote:
For the 26S project we currently do:
get particle by name
How could we beat something like:
[x for x in myparticles if x.has_attribute(name) and
x.get_value(name)
==
"myname"]
with an SQL query?
get a set of particles within a residue number range
again, some variant on:
[x for x in molecular_hierarchy_get_by_type(root,
MolecularHierarchyDecorator.RESIDUE) if
ResidueDecorator(x).get_index() > lb and
ResidueDecorator(x).get_index()
<ub]
or C++, something like
Frido and I find ourselves many times need to query
particles based
on
attribute values.
Few such examples: a protein with a specific name,
particles with a
specific
residue range.
I think that it would be very useful to have something
similar to
SQL
queries on the particles DB.
Bret might had something similar implemented - but it is
probably
obsolete.
IMP.Atom will probably need such functionality as well.
has anyone took a look at that before ?
thank you,
Keren.
_______________________________________________
IMP-dev mailing list
IMP-dev@salilab.orghttps://salilab.org/mailman/listinfo/imp-dev