Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions docs/resources/library/celltreat.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,10 @@
| Same as 229590 (229590 is sold with lids) 'CellTreat_96_wellplate_350ul_Ub'<br>Part no.: 229591<br>[manufacturer website](https://www.celltreat.com/product/229591/) | ![](img/celltreat/CellTreat_96_wellplate_350ul_Ub.jpg) | `CellTreat_96_wellplate_350ul_Ub` |
| 229195 and 229196 'CellTreat_96_wellplate_350ul_Fb'<br>Part no.: 229195<br>[manufacturer website](https://www.celltreat.com/product/229195/) <br> are treated | ![](img/celltreat/CellTreat_96_wellplate_350ul_Fb.jpg) | `CellTreat_96_wellplate_350ul_Fb` |
| 229562 (not sterile), 229566 (sterile) 'CellTreat_12_troughplate_15000ul_Vb'<br>[manufacturer website](https://www.celltreat.com/product/229562) <br> are treated | ![](img/celltreat/CellTreat_12_troughplate_15000ul_Vb.jpg) | `CellTreat_12_troughplate_15000ul_Vb` |


## Tubes

| Description | Image | PLR definition |
|--------------------|--------------------|--------------------|
| 229414 (sterile) <br>[manufacturer website](https://www.celltreat.com/product/229414/) <br>- bottom_type=TubeBottomType.V | ![](img/celltreat/celltreat_15000ul_centrifuge_tube_Vb.webp) | `celltreat_15000ul_centrifuge_tube_Vb` |
1 change: 1 addition & 0 deletions docs/resources/library/eppendorf.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ Company page: [Eppendorf Wikipedia](https://en.wikipedia.org/wiki/Eppendorf_(com
| Description | Image | PLR definition |
|--------------------|--------------------|--------------------|
| "Common eppendorf tube"<br>Part no.: 022431021 (DNA), 022431081 (protein)<br>[manufacturer website](https://www.fishersci.com/shop/products/dna-lobind-microcentrifuge-tubes/13698791) | ![](img/eppendorf/Eppendorf_DNA_LoBind_1_5ml_Vb.webp) | `Eppendorf_DNA_LoBind_1_5ml_Vb` `Eppendorf_Protein_LoBind_1_5ml_Vb` |
| "Common eppendorf tube"<br>Part no.: 022431048<br>[manufacturer website](https://www.fishersci.com/shop/products/dna-lobind-microcentrifuge-tubes/13698792) | ![](img/eppendorf/Eppendorf_DNA_LoBind_2ml_Ub.jpg) | `Eppendorf_DNA_LoBind_2ml_Ub` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions pylabrobot/resources/celltreat/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
from .plates import *
from .tubes import *
19 changes: 19 additions & 0 deletions pylabrobot/resources/celltreat/tubes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
from pylabrobot.resources.tube import Tube


def celltreat_15000ul_centrifuge_tube_Vb(name: str) -> Tube:
"""CELLTREAT® Centrifuge Tubes-RackMaster 15mL Centrifuge Tube, Best Value - Paperboard Rack, Sterile
Part no.: 229414

- bottom_type=TubeBottomType.V
"""
Comment on lines +4 to +9
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this as well. could you please link a drawing or comment these values are measured?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done, you measured this one actually

diameter = 14.7 # measured
return Tube(
name=name,
size_x=diameter,
size_y=diameter,
size_z=190.5, # measured
model=celltreat_15000ul_centrifuge_tube_Vb.__name__,
max_volume=15_000, # units: ul
material_z_thickness=0.8, # measured
)
24 changes: 21 additions & 3 deletions pylabrobot/resources/eppendorf/tubes.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ def Eppendorf_DNA_LoBind_1_5ml_Vb(name: str, model="Eppendorf_DNA_LoBind_1_5ml_V
- bottom_type=TubeBottomType.V
- snap-cap lid
"""
diameter = 10.33
diameter = 10.33 # measured
return Tube(
name=name,
size_x=diameter,
size_y=diameter,
size_z=39.5,
size_z=39.5, # measured
model="Eppendorf_DNA_LoBind_1_5ml_Vb",
max_volume=1_400,
material_z_thickness=0.8,
material_z_thickness=0.8, # measured
)


Expand All @@ -29,3 +29,21 @@ def Eppendorf_Protein_LoBind_1_5ml_Vb(name: str) -> Tube:
Same as Eppendorf_DNA_LoBind_1_5ml_Vb
"""
return Eppendorf_DNA_LoBind_1_5ml_Vb(name=name, model="Eppendorf_Protein_LoBind_1_5ml_Vb")


def Eppendorf_DNA_LoBind_2ml_Ub(name: str) -> Tube:
"""2 mL round-bottom snap-cap Eppendorf tube. cat. no.: 022431048

- bottom_type=TubeBottomType.U
- snap-cap lid
"""
diameter = 10.33 # measured
return Tube(
name=name,
size_x=diameter,
size_y=diameter,
size_z=41, # measured
model="Eppendorf_DNA_LoBind_2ml_Ub",
max_volume=2000, # units: ul
material_z_thickness=0.8, # measured
)