コード例 #1
0
ファイル: poolcreationset.py プロジェクト: helixyte/TheLMA
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The molecule design pool IDs mapped onto row index.
     self.pool_ids = None
     #: The molecule design lists found (each record is a list
     #: molecule design IDs) mapped onto row index.
     self.molecule_design_lists = None
コード例 #2
0
ファイル: poolcreationset.py プロジェクト: papagr/TheLMA
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The molecule design pool IDs mapped onto row index.
     self.pool_ids = None
     #: The molecule design lists found (each record is a list
     #: molecule design IDs) mapped onto row index.
     self.molecule_design_lists = None
コード例 #3
0
ファイル: experimentpoolset.py プロジェクト: papagr/TheLMA
 def reset(self):
     """
     Resets the parser.
     """
     ExcelFileParser.reset(self)
     self.column_index = None
     self.molecule_design_pool_ids = set()
     self.abort_message = None
コード例 #4
0
ファイル: experimentpoolset.py プロジェクト: helixyte/TheLMA
 def reset(self):
     """
     Resets the parser.
     """
     ExcelFileParser.reset(self)
     self.column_index = None
     self.molecule_design_pool_ids = set()
     self.abort_message = None
コード例 #5
0
ファイル: libbaselayout.py プロジェクト: helixyte/TheLMA
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The sheet to be parsed.
     self.sheet = None
     #: The rack shape of the layout as rack shape container.
     self.shape = None
     #: Lists the wells that contain characters (positive wells)
     #: as :class:`RackPositionParsingContainers`.
     self.contained_wells = None
コード例 #6
0
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The sheet to be parsed.
     self.sheet = None
     #: The rack shape of the layout as rack shape container.
     self.shape = None
     #: Lists the wells that contain characters (positive wells)
     #: as :class:`RackPositionParsingContainers`.
     self.contained_wells = None
コード例 #7
0
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The Excel sheet containing the data.
     self.sheet = None
     #: The molecule design lists founds (each record is a list
     #: molecule design IDs).
     self.molecule_design_lists = None
     #: The index of the column containing the molecule design IDs.
     self.__column_index = None
コード例 #8
0
ファイル: experimentpoolset.py プロジェクト: papagr/TheLMA
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The Excel sheet containing the data.
     self.sheet = None
     #: a list of molecule design pool IDs (before validation)
     self.molecule_design_pool_ids = None
     #: The index of the column containing the molecule design pool IDs.
     self.column_index = None
     #: The message that is launched upon abort.
     self.abort_message = None
コード例 #9
0
ファイル: experimentpoolset.py プロジェクト: helixyte/TheLMA
 def __init__(self, stream, parent=None):
     ExcelFileParser.__init__(self, stream, parent=parent)
     #: The Excel sheet containing the data.
     self.sheet = None
     #: a list of molecule design pool IDs (before validation)
     self.molecule_design_pool_ids = None
     #: The index of the column containing the molecule design pool IDs.
     self.column_index = None
     #: The message that is launched upon abort.
     self.abort_message = None
コード例 #10
0
ファイル: poolcreationset.py プロジェクト: papagr/TheLMA
 def reset(self):
     ExcelFileParser.reset(self)
     self.pool_ids = dict()
     self.molecule_design_lists = dict()
コード例 #11
0
ファイル: libbaselayout.py プロジェクト: helixyte/TheLMA
 def reset(self):
     ExcelFileParser.reset(self)
     self.shape = None
     self.contained_wells = []
コード例 #12
0
 def reset(self):
     ExcelFileParser.reset(self)
     self.shape = None
     self.contained_wells = []
コード例 #13
0
ファイル: poolcreationset.py プロジェクト: helixyte/TheLMA
 def reset(self):
     ExcelFileParser.reset(self)
     self.pool_ids = dict()
     self.molecule_design_lists = dict()
コード例 #14
0
 def reset(self):
     ExcelFileParser.reset(self)
     self.__column_index = None
     self.molecule_design_lists = []