|
1 | 1 | # Resource Library
|
2 | 2 |
|
3 |
| -The PLR Resource Library (PLR-RL) is the world's biggest and most accurate centralized collection of labware. If you cannot find something, please contribute what you are looking for! |
| 3 | +The PyLabRobot Resource Library (PLR-RL) is PyLabRobot's open-source, crowd-sourced collection of labware. |
| 4 | +Laboratories across the world use an almost infinite number of different resources/labware. |
| 5 | +We believe the way to most efficient capture the largest portion of this resource superset is via crowd-sourcing, and peer-reviewing new entries. |
| 6 | +If you cannot find something, please contribute what you are looking for! |
| 7 | + |
| 8 | +---- |
4 | 9 |
|
5 | 10 | ```{toctree}
|
6 | 11 | :maxdepth: 1
|
7 | 12 |
|
8 | 13 | introduction
|
9 | 14 | custom-resources
|
| 15 | +plr-rl-naming-conventions |
10 | 16 | ```
|
11 | 17 |
|
| 18 | +---- |
| 19 | + |
12 | 20 | ## `Resource` subclasses
|
13 | 21 |
|
14 | 22 | In PLR every physical object is a subclass of the `Resource` superclass (except for `Tip`).
|
15 | 23 | Each subclass adds unique methods or attributes to represent its unique physical specifications and behavior.
|
16 | 24 |
|
17 |
| -Some standard `Resource` subclasses in the inheritance tree are: |
18 |
| - |
19 |
| -``` |
20 |
| -Resource |
21 |
| -├── Carrier |
22 |
| -│ ├── TipCarrier |
23 |
| -│ ├── PlateCarrier |
24 |
| -│ ├── MFXCarrier |
25 |
| -│ ├── ShakerCarrier |
26 |
| -│ └── TubeCarrier |
27 |
| -├── Container |
28 |
| -│ ├── Well |
29 |
| -│ ├── PetriDish |
30 |
| -│ ├── Tube |
31 |
| -│ └── Trough |
32 |
| -├── ItemizedResource |
33 |
| -│ ├── Plate |
34 |
| -│ ├── TipRack |
35 |
| -│ └── TubeRack |
36 |
| -├── Lid |
37 |
| -└── PlateAdapter |
38 |
| -``` |
39 |
| - |
40 |
| -See more detailed documentatino below (WIP). |
| 25 | +PLR's `Resource` subclasses in the inheritance tree are: |
| 26 | +<style> |
| 27 | + .tree { |
| 28 | + border: 3px solid black; /* Thick border around the entire table */ |
| 29 | + border-collapse: collapse; /* Ensures borders don’t double */ |
| 30 | + background-color: #FAF3DD; /* Light background */ |
| 31 | + margin-left: 5px; /* A bit of left margin */ |
| 32 | + } |
| 33 | + |
| 34 | + .tree td { |
| 35 | + font-family: "Fira Code", monospace; /* Code-like font */ |
| 36 | + font-size: 15px; /* Matches code cell output */ |
| 37 | + font-weight: bold; /* Make all text bold */ |
| 38 | + line-height: 1.2; /* Slightly tighten vertical spacing */ |
| 39 | + padding: 0 10px; /* Padding around each line */ |
| 40 | + border: none; /* Remove inner borders */ |
| 41 | + white-space: pre; /* Preserve spacing exactly */ |
| 42 | + } |
| 43 | +</style> |
| 44 | + |
| 45 | +<table class="tree"> |
| 46 | + <tr><td><a href="introduction.html">Resource</a></td></tr> |
| 47 | + |
| 48 | + <!-- Carrier subtree --> |
| 49 | + <tr><td>├── <a href="carrier/carrier.html">Carrier</a></td></tr> |
| 50 | + <tr><td>│ ├── <a href="carrier/plate-carrier/plate_carriers.html">PlateCarrier</a></td></tr> |
| 51 | + <tr><td>│ ├── TipCarrier</td></tr> |
| 52 | + <tr><td>│ ├── <a href="carrier/mfx-carrier/mfx_carriers.html">MFXCarrier</a></td></tr> |
| 53 | + <tr><td>│ ├── TroughCarrier</td></tr> |
| 54 | + <tr><td>│ └── TubeCarrier</td></tr> |
| 55 | + |
| 56 | + <!-- Container subtree --> |
| 57 | + <tr><td>├── Container</td></tr> |
| 58 | + <tr><td>│ ├── Well</td></tr> |
| 59 | + <tr><td>│ ├── PetriDish</td></tr> |
| 60 | + <tr><td>│ ├── Tube</td></tr> |
| 61 | + <tr><td>│ └── Trough</td></tr> |
| 62 | + |
| 63 | + <!-- ItemizedResource subtree --> |
| 64 | + <tr><td>├── <a href="itemized-resource/itemized-resource.html">ItemizedResource</a></td></tr> |
| 65 | + <tr><td>│ ├── <a href="itemized-resource/plate/plate.html">Plate</a></td></tr> |
| 66 | + <tr><td>│ ├── TipRack</td></tr> |
| 67 | + <tr><td>│ └── TubeRack</td></tr> |
| 68 | + |
| 69 | + <!-- ResourceHolder subtree --> |
| 70 | + <tr><td>├── ResourceHolder</td></tr> |
| 71 | + <tr><td>│ └── PlateHolder</td></tr> |
| 72 | + |
| 73 | + <!-- Others --> |
| 74 | + <tr><td>├── Lid</td></tr> |
| 75 | + <tr><td>├── PlateAdapter</td></tr> |
| 76 | + <tr><td>└── ResourceStack</td></tr> |
| 77 | +</table> |
| 78 | + |
| 79 | +---- |
41 | 80 |
|
42 | 81 | ```{toctree}
|
43 |
| -:caption: Resource subclasses |
| 82 | +:maxdepth: 3 |
| 83 | +:caption: Resource subclass explanations |
| 84 | +:hidden: |
44 | 85 |
|
| 86 | +carrier/carrier |
45 | 87 | containers
|
46 |
| -itemized_resource |
47 |
| -plates |
48 |
| -plate_carriers |
49 |
| -mfx |
| 88 | +itemized-resource/itemized-resource |
50 | 89 | ```
|
51 | 90 |
|
52 | 91 | ## Library
|
53 | 92 |
|
54 |
| -### Plate Naming Standard |
55 |
| - |
56 |
| -PLR is not actively enforcing a specific plate naming standard but recommends the following: |
57 |
| - |
58 |
| - |
59 |
| - |
60 |
| -This standard is similar to the [Opentrons API labware naming standard](https://ecatalog.corning.com/life-sciences/b2b/UK/en/Microplates/Assay-Microplates/96-Well-Microplates/Costar%C2%AE-Multiple-Well-Cell-Culture-Plates/p/3516) but 1) further sub-categorizes "wellplates" to facilitate communication with day-to-day users, and 2) adds information about the well-bottom geometry. |
61 |
| - |
62 | 93 | ```{toctree}
|
63 | 94 | :caption: Library
|
64 | 95 |
|
|
0 commit comments