add sample material column and rewrite inosticID column

This commit is contained in:
Sherwin Price
2023-11-07 17:33:37 -05:00
parent 1f40865aa0
commit 3b73f2b421
4 changed files with 41 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ class RowModel:
self.coordinate = coordinate
self.accessionid = accessionid
self.customerid = None
self.materialid = None
self.plasmavolml = float(0.0)
self.qubitrunid = None
self.qubitassay = None
@@ -39,7 +40,13 @@ class RowModel:
def get_customerid(self):
return self.customerid
def set_materialid(self, matrlid:str):
self.materialid = matrlid
def get_materialid(self):
return self.materialid
def set_qubitassay(self, assay:str):
self.qubitassay = assay