I am trying to add a Microplate_96_Well plate to MP_3Pos Carrier.
I get an error. This goes for any of the 96 well labwares i found in the tecan resources. The problem does not accure when i choose corning_96_wellplate_360ul_flat from the opentrons resource.
mp_3pos = MP_3Pos(name=‘mp_3pos’)
mp_3pos[0] = Microplate_96_Well(name=‘plate_1’, with_lid=False) ˋ
The error i get is:
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) Cell In[33], line 7 1 ## HAmilton 2 # plt_car = PLT_CAR_L5AC_A00(name=‘plate carrier’) 3 # plt_car[0] = Cos_96_DW_1mL(name=‘plate_01’) 4 5 ## Tecan 6 mp_3pos = MP_3Pos(name=‘mp_3pos’) ----> 7 mp_3pos[0] = Microplate_96_Well(name=‘plate_1’, with_lid=False) 8 # mp_3pos[0] = Microplate_Nunc_96_Well(name=‘plate_1’, with_lid=False) 9 # mp_3pos[0] = corning_96_wellplate_360ul_flat(name=‘plate_1’) File [c:\users\vikmol\onedrive\dokumenter\github\pylabrobot_dalsa\pylabrobot\resources\tecan\plates.py:90](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:90), in Microplate_96_Well(name, with_lid) [43](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:43) def Microplate_96_Well(name: str, with_lid: bool = False) → TecanPlate: [44](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:44) “”" white: pn 30122300, black: pn 30122298, cell culture/clear: pn 30122304, cell culture/black with clear bottom: pn 30122306 [45](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:45) [46](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:46) Coley (…) [74](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:74) ) [75](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:75) “”" [77](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:77) return TecanPlate( [78](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:78) name=name, [79](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:79) size_x=127.8, [80](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/tecan/plates.py:80) size_y=85.4,
…
[421](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/itemized_resource.py:421) ) [422](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/itemized_resource.py:422) item.location=Coordinate(x=dx + i * item_dx, y=dy + (num_items_y-j-1) * item_dy, z=dz) [423](file:///C:/users/vikmol/onedrive/dokumenter/github/pylabrobot_dalsa/pylabrobot/resources/itemized_resource.py:423) items[i].append(item) TypeError: Well.init() missing 1 required positional argument: ‘size_z’