Changeset 436 for trunk/src/io.py

Show
Ignore:
Timestamp:
09/25/09 14:02:04 (3 years ago)
Author:
apdavison
Message:

Modified the mapping of cell id to image position for plotting activity maps/movies.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/io.py

    r415 r436  
    147147        if not ('id_list' in params) or (params['id_list'] is None): 
    148148            if ('first_id' in self.metadata) and ('last_id' in self.metadata): 
    149                 logging.debug("id_list is infered from the file header") 
    150149                params['id_list'] = range(int(self.metadata['first_id']), int(self.metadata['last_id'])+1) 
     150                logging.debug("id_list (%d...%d) is infered from the file header" % (int(self.metadata['first_id']), int(self.metadata['last_id'])+1)) 
    151151            else: 
    152152                raise Exception("id_list can not be infered while reading %s" %self.filename)