Package omero :: Package util :: Module populate_metadata :: Class ValueResolver
[hide private]
[frames] | no frames]

Class ValueResolver

source code


Value resolver for column types which is responsible for filling up non-metadata columns with their OMERO data model identifiers.

Instance Methods [hide private]
 
__init__(self, client, target_object)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
load_screen(self) source code
 
load_plate(self) source code
 
parse_plate(self, plate, wells_by_location) source code
 
load_dataset(self) source code
 
resolve(self, column, value, row) source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  AS_ALPHA = [chr(v) for v in range(97, 122+ 1)]
  WELL_REGEX = re.compile(r'^([a-zA-Z]+)(\d+)$')
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, client, target_object)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)