Skip to content

Commit 9b353cc

Browse files
committed
fix Eppendorf_DNA_LoBind_1_5ml_Vb, add Eppendorf_Protein_LoBind_1_5ml_Vb
1 parent cab69d6 commit 9b353cc

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

docs/resources/library/eppendorf.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ Company page: [Eppendorf Wikipedia](https://en.wikipedia.org/wiki/Eppendorf_(com
1818

1919
| Description | Image | PLR definition |
2020
|--------------------|--------------------|--------------------|
21-
| "Common eppendorf tube" 'Eppendorf_DNA_LoBind_1_5ml_Vb'<br>Part no.: 0030133374<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` |
21+
| "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` |
Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,31 @@
11
from pylabrobot.resources.tube import Tube
22

33

4-
def Eppendorf_DNA_LoBind_1_5ml_Vb(name: str) -> Tube:
5-
"""1.5 mL round-bottom snap-cap Eppendorf tube. cat. no.: 022431021
4+
def Eppendorf_DNA_LoBind_1_5ml_Vb(name: str, model="Eppendorf_DNA_LoBind_1_5ml_Vb") -> Tube:
5+
"""1.5 mL round-bottom snap-cap Eppendorf tube.
6+
7+
cat. no.: 022431021 (Eppendorf™ DNA LoBind™ Tubes)
68
79
- bottom_type=TubeBottomType.V
810
- snap-cap lid
911
"""
10-
# material_z_thickness = 2.4 mm
11-
diameter = 17
12+
diameter = 10.33
1213
return Tube(
1314
name=name,
1415
size_x=diameter,
1516
size_y=diameter,
16-
size_z=39,
17+
size_z=39.5,
1718
model="Eppendorf_DNA_LoBind_1_5ml_Vb",
18-
max_volume=1_400, # units: ul
19+
max_volume=1_400,
1920
material_z_thickness=0.8,
2021
)
22+
23+
24+
def Eppendorf_Protein_LoBind_1_5ml_Vb(name: str) -> Tube:
25+
"""1.5 mL round-bottom screw-cap Eppendorf tube.
26+
27+
cat. no.: 022431081 (Eppendorf™ Protein LoBind™ Tubes)
28+
29+
Same as Eppendorf_DNA_LoBind_1_5ml_Vb
30+
"""
31+
return Eppendorf_DNA_LoBind_1_5ml_Vb(name=name, model="Eppendorf_Protein_LoBind_1_5ml_Vb")

0 commit comments

Comments
 (0)