Пример #1
0
 def _check_associated_sectors(self):
     """
     Since all floating positions are regarded as the same pool, the default
     sector association will not work if we do have controls to distinguish
     sectors.
     """
     if not self.regard_controls and self.number_sectors > 1:
         self.__find_floating_only_associations()
     else:
         IsoRequestSectorAssociator._check_associated_sectors(self)
Пример #2
0
 def _check_associated_sectors(self):
     """
     Since all floating positions are regarded as the same pool, the default
     sector association will not work if we do have controls to distinguish
     sectors.
     """
     if not self.regard_controls and self.number_sectors > 1:
         self.__find_floating_only_associations()
     else:
         IsoRequestSectorAssociator._check_associated_sectors(self)
Пример #3
0
 def _get_molecule_design_pool_id(self, layout_pos):
     """
     Floating pool placeholdes are replaced by an unspecific marker.
     """
     if not layout_pos is None and layout_pos.is_floating:
         return TransfectionParameters.FLOATING_TYPE_VALUE
     else:
         return IsoRequestSectorAssociator._get_molecule_design_pool_id(
             self, layout_pos)
Пример #4
0
 def _get_molecule_design_pool_id(self, layout_pos):
     """
     Floating pool placeholdes are replaced by an unspecific marker.
     """
     if not layout_pos is None and layout_pos.is_floating:
         return TransfectionParameters.FLOATING_TYPE_VALUE
     else:
         return IsoRequestSectorAssociator._get_molecule_design_pool_id(self,
                                                                  layout_pos)