Plate Documentation
Plate
A class to represent a multiwell plate.
This class manages a multiwell plate, with functionalities to access, modify, and visualize the wells, along with their metadata.
Attributes:
Name | Type | Description |
---|---|---|
_default_n_rows |
int
|
Default number of rows in the plate. |
_default_n_columns |
int
|
Default number of columns in the plate. |
_default_well_color |
Tuple[float, float, float]
|
Default RGB color of the wells. |
_default_exclude_metadata |
list
|
Default metadata keys to exclude. |
_default_colormap |
str
|
Default colormap for visualizations. |
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plate_dim |
Tuple[int, int]
|
The dimensions of the plate as (rows, columns). |
None
|
plate_id |
int
|
A unique identifier for the plate. |
1
|
Source code in src/plate_planner/plate.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 |
|
capacity: int
property
Get the number of samples that can be added to the plate, which is the same as the number of wells in this class
Example
plate = Plate(plate_dim=(8, 12)) # A standard 96-well plate plate.capacity 96
column_labels: list
property
Get the column labels for the plate.
This property generates a list of numerical strings representing the column labels of the plate, based on the number of columns in the plate.
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of strings, each representing a column label. |
Example
plate = Plate(plate_dim=(8, 12)) # A standard 96-well plate plate.column_labels ['1', '2', '3', '4', '5', '6', '7', '8', '9', '10', '11', '12']
plate_id: int
property
writable
Get the plate ID.
This property returns the unique identifier of the plate.
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The plate ID. |
Example
plate = Plate() plate.plate_id 1
row_labels: list
property
Get the row labels for the plate.
This property generates a list of alphabetical characters representing the row labels of the plate, based on the number of rows in the plate.
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of strings, each representing a row label. |
Example
plate = Plate(plate_dim=(8, 12)) # A standard 96-well plate plate.row_labels ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H']
__add__(other)
Combine the content of this Plate with another Plate.
The wells of both plates are combined. If wells at the same coordinates exist in both plates, their metadata is merged.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Plate
|
Another Plate to combine with. |
required |
Returns:
Name | Type | Description |
---|---|---|
Plate |
Plate
|
A new Plate with combined content from both plates. |
Raises:
Type | Description |
---|---|
ValueError
|
If the dimensions of the two plates do not match. |
Example
plate1 = Plate(plate_dim=(2, 2)) plate1.wells[0].metadata = {'sample': 'A'} plate2 = Plate(plate_dim=(2, 2)) plate2.wells[0].metadata = {'volume': 100} combined_plate = plate1 + plate2 combined_plate.wells[0].metadata {'sample': 'A', 'volume': 100}
Source code in src/plate_planner/plate.py
__getitem__(key)
Retrieve a well from the plate based on its index, coordinate, or name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int, tuple, or str
|
The identifier for the well. Can be an integer index, a tuple indicating row and column coordinates, or a string specifying the well's name. |
required |
Returns:
Name | Type | Description |
---|---|---|
Well |
Well
|
The well object corresponding to the given key. |
Raises:
Type | Description |
---|---|
TypeError
|
If the key is not an integer, tuple, or string. |
Example
plate = Plate() plate[0].name 'A1' plate[(0, 0)].name 'A1' plate["A1"].name 'A1'
Source code in src/plate_planner/plate.py
__init__(plate_dim=None, plate_id=1)
Initialize a new Plate instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
plate_dim |
Tuple[int, int]
|
The dimensions of the plate as (rows, columns). If None, default dimensions are used. |
None
|
plate_id |
int
|
A unique identifier for the plate. |
1
|
The constructor initializes the plate with the specified dimensions, generating wells with default properties and assigning them unique coordinates and identifiers.
Examples:
Creating a Plate instance with default dimensions and a specific plate ID:
Source code in src/plate_planner/plate.py
__iter__()
Return an iterator over the wells of the plate.
This allows direct iteration over the plate object itself.
Example
plate = Plate(plate_dim=(2, 2)) [well.name for well in plate] ['A1', 'A2', 'B1', 'B2']
Source code in src/plate_planner/plate.py
__len__()
Returns the number of wells in the plate.
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The number of wells. |
Example
plate = Plate() len(plate) 96
__setitem__(key, well_object)
Set or replace a well in the plate based on its index, coordinate, or name.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
int, tuple, or str
|
The identifier for the well to be set or replaced. Can be an integer index, a tuple indicating row and column coordinates, or a string specifying the well's name. |
required |
well_object |
Well
|
The well object to set at the specified key. |
required |
Raises:
Type | Description |
---|---|
ValueError
|
If the well_object is not an instance of Well. |
IndexError
|
If the well index is out of range. |
TypeError
|
If the key is not a string, integer, or tuple. |
Example
plate = Plate(plate_dim=(2, 2)) # Create a small 2x2 plate for simplicity new_well = Well(name="C3", plate_id=1, coordinate=(0, 1), metadata={"study_group": "control"}) # Define a new well plate[0] = new_well # Set this well at the first position plate[0].name 'A1' plate[0].metadata["study_group"] 'control'
Source code in src/plate_planner/plate.py
add_metadata(key, values)
Add or update metadata for all wells in the plate. If a list of values is provided, assign each value to the corresponding well. If a single value is provided, assign it to all wells.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
The metadata key to add or update. |
required |
values |
A single value or a list of values to set for the given metadata key. |
required |
Example
plate = Plate(plate_dim=(2, 2)) plate.add_metadata('sample_type', ['RNA', 'DNA', 'RNA', 'DNA']) [well.metadata['sample_type'] for well in plate.wells] ['RNA', 'DNA', 'RNA', 'DNA'] plate.add_metadata('study', 'oncology') all(well.metadata['study'] == 'oncology' for well in plate.wells) True
Source code in src/plate_planner/plate.py
as_dataframe()
Converts the plate data into a Pandas DataFrame.
Each well and its attributes are represented as a row in the DataFrame.
Returns:
Type | Description |
---|---|
DataFrame
|
pandas.DataFrame: A DataFrame representing the plate's wells and their attributes. |
Example:
plate = Plate() df = plate.as_dataframe() len(df) 96
Source code in src/plate_planner/plate.py
as_figure(annotation_metadata_key=None, color_metadata_key=None, fontsize=8, rotation=0, step=10, title_str=None, title_fontsize=14, alpha=0.7, well_size=1200, fig_width=11.69, fig_height=8.27, dpi=100, plt_style='fivethirtyeight', grid_color=(1, 1, 1), edge_color=(0.5, 0.5, 0.5), legend_bb=(0.15, -0.15, 0.7, 1.3), legend_n_columns=6, colormap='tab10', show_grid=True, show_frame=True)
Create a visual representation of the plate using matplotlib.
This method generates a figure representing the plate, with options for annotations, coloring based on metadata, and various styling adjustments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
annotation_metadata_key |
str
|
Metadata key to use for annotating wells. |
None
|
color_metadata_key |
str
|
Metadata key to determine the color of wells. |
None
|
fontsize |
int
|
Font size for annotations. Default is 8. |
8
|
rotation |
int
|
Rotation angle for annotations. Default is 0. |
0
|
step |
int
|
Step size between wells in the grid. Default is 10. |
10
|
title_str |
str
|
Title of the figure. If None, a default title is used. |
None
|
title_fontsize |
str
|
Font size for title. |
14
|
alpha |
float
|
Alpha value for well colors. Default is 0.7. |
0.7
|
well_size |
int
|
Size of the wells in the figure. Default is 1200. |
1200
|
fig_width |
float
|
Width of the figure. Default is 11.69. |
11.69
|
fig_height |
float
|
Height of the figure. Default is 8.27. |
8.27
|
dpi |
int
|
Dots per inch for the figure. Default is 100. |
100
|
plt_style |
str
|
Matplotlib style to use. Default is 'bmh'. |
'fivethirtyeight'
|
grid_color |
tuple
|
Color for the grid. Default is (1, 1, 1). |
(1, 1, 1)
|
edge_color |
tuple
|
Color for the edges of wells. Default is (0.5, 0.5, 0.5). |
(0.5, 0.5, 0.5)
|
legend_bb |
tuple
|
Bounding box for the legend. Default is (0.15, -0.15, 0.7, 1.3). |
(0.15, -0.15, 0.7, 1.3)
|
legend_n_columns |
int
|
Number of columns in the legend. Default is 6. |
6
|
colormap |
str
|
Colormap name for coloring wells. Uses default colormap if None. |
'tab10'
|
show_grid |
bool
|
If True, displays a grid anchored at the well centers; default is True. |
True
|
show_grid |
bool
|
If True, plot a rectangle to frame the wells; default is True. |
True
|
Returns:
Type | Description |
---|---|
Figure
|
matplotlib.figure.Figure: A figure object representing the plate. |
Raises:
Type | Description |
---|---|
ValueError
|
If provided metadata keys are not valid. |
Source code in src/plate_planner/plate.py
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 |
|
as_plotly_figure(annotation_metadata_key=None, color_metadata_key=None, fontsize=14, title_str=None, title_fontsize=14, alpha=0.7, well_size=45, fig_width=1000, fig_height=700, colormap_continuous='Viridis', colormap_discrete='D3', text_rotation=0, show_grid=True, theme='plotly', dark_mode=False, marker_shape='circle')
Generates a Plotly scatter plot representing the data of a biological plate.
This function takes various parameters for customization of the plot such as colors, font sizes, title, and dimensions. It handles both continuous and discrete data types for coloring and allows annotations on each point in the scatter plot.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
annotation_metadata_key |
str
|
Metadata key for annotations. Default is None. |
None
|
color_metadata_key |
str
|
Metadata key for color mapping. Default is None. |
None
|
fontsize |
int
|
Font size for annotations. Default is 14. |
14
|
title_str |
str
|
Title of the plot. Default is None. |
None
|
title_fontsize |
int
|
Font size for the plot title. Default is 14. |
14
|
alpha |
float
|
Opacity level for markers. Default is 0.7. |
0.7
|
well_size |
int
|
Marker size. Default is 45. |
45
|
fig_width |
int
|
Width of the figure in pixels. Default is 1000. |
1000
|
fig_height |
int
|
Height of the figure in pixels. Default is 700. |
700
|
colormap_continuous |
str
|
Colormap for continuous data. Default is "Viridis". |
'Viridis'
|
colormap_discrete |
str
|
Colormap for discrete data. Default is "D3". |
'D3'
|
text_rotation |
int
|
Rotation angle of text annotations. Default is 0. |
0
|
show_grid |
bool
|
Whether to show grid lines. Default is True. |
True
|
theme |
str
|
Plotly theme. Default is 'plotly'. |
'plotly'
|
Returns:
Type | Description |
---|---|
Figure
|
plotly.graph_objs._figure.Figure.Figure: A Plotly scatter plot figure. |
Example:
plate = Plate()
fig = plate.as_plotly_figure(
annotation_metadata_key='gene_name',
color_metadata_key='expression_level',
fontsize=12,
title_str='Gene Expression Levels',
title_fontsize=16,
alpha=0.8,
well_size=50,
fig_width=1200,
fig_height=800,
colormap_continuous="Plasma",
text_rotation=45,
show_grid=False,
theme='plotly_dark'
)
fig.show()
This example generates a scatter plot with gene names as annotations, colors representing expression levels, customized font sizes, and a dark theme.
Source code in src/plate_planner/plate.py
931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 |
|
as_records()
Convert the plate's well data into a list of dictionaries.
Each well's attributes are converted into a dictionary, and all these dictionaries are compiled into a list, with one dictionary per well.
Returns:
Type | Description |
---|---|
List[dict]
|
list of dict: A list where each element is a dictionary representing a well's attributes. |
Example
plate = Plate(plate_dim=(1, 2)) plate[0].metadata["sample_type"] = "plasma" # set metadata for first well records = plate.as_records() len(records) # Number of wells in the plate 2 sorted(records[0].keys()) # Show the keys of the first well's dictionary ['coordinate', 'empty', 'index', 'name', 'plate_id', 'rgb_color', 'sample_type']
Source code in src/plate_planner/plate.py
create_alphanumerical_coordinates(rows, columns)
staticmethod
Static method to create alphanumerical coordinates for the wells.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rows |
list
|
A list of row indices. |
required |
columns |
list
|
A list of column indices. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of alphanumerical coordinates (e.g., "A1", "B2"). |
Example
Plate.create_alphanumerical_coordinates([0, 1], [0, 1, 2]) ['A1', 'A2', 'A3', 'B1', 'B2', 'B3'] Plate.create_alphanumerical_coordinates([0], [0, 1]) ['A1', 'A2']
Source code in src/plate_planner/plate.py
create_index_coordinates(rows, columns)
staticmethod
Static method to create a list of index coordinates for the wells in a plate.
The method generates a grid of coordinates, counting from left to right, starting at the well in the top left. It is used to map the wells to their respective positions in the plate.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
rows |
iterable
|
An iterable representing the rows of the plate. |
required |
columns |
iterable
|
An iterable representing the columns of the plate. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of tuples, each representing the (row, column) index of a well. |
Example
Plate.create_index_coordinates(range(2), range(2)) [(1, 0), (1, 1), (0, 0), (0, 1)]
Source code in src/plate_planner/plate.py
get_metadata(metadata_key)
Retrieve metadata values for all wells in the plate based on the specified key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metadata_key |
str
|
The metadata key for which values are to be retrieved. If None, a default value of 'NaN' is returned for each well. |
required |
Returns:
Name | Type | Description |
---|---|---|
list |
list
|
A list of metadata values for each well in the plate. |
Example
Using a Plate with 4 wells and adding metadata for demonstration
plate = Plate(plate_dim=(2, 2)) for well in plate.wells: ... well.metadata['sample_type'] = 'RNA' plate.get_metadata('sample_type') ['RNA', 'RNA', 'RNA', 'RNA'] plate.get_metadata('non_existing_key') # Key not present ['NaN', 'NaN', 'NaN', 'NaN']
Source code in src/plate_planner/plate.py
get_metadata_as_numpy_array(metadata_key)
Retrieve metadata values for all wells in a numpy array format based on the specified key.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
metadata_key |
str
|
The metadata key for which values are to be retrieved. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
numpy.ndarray: A numpy array representing the metadata values for the plate's layout. |
Example: # Using a Plate with 4 wells and adding metadata for demonstration >>> plate = Plate(plate_dim=(2, 2)) >>> for well in plate.wells: ... well.metadata['concentration'] = 10.0 >>> array = plate.get_metadata_as_numpy_array('concentration') >>> array.shape (2, 2) >>> array[0, 0] # Value in the first well 10.0
Source code in src/plate_planner/plate.py
is_valid_metadata_key(key)
Check if the provided key is a valid metadata key for the Well instances in the plate.
This method verifies whether the specified key is either a direct attribute of the Well instances or a key within their metadata dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
The key to check for validity as a metadata key. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if the key is a valid metadata key, False otherwise. |
Source code in src/plate_planner/plate.py
to_file(file_path=None, file_format='csv', metadata_keys=[])
Write the plate data to a file in the specified format.
The method supports various file formats such as CSV, TSV, and Excel. It allows selection of specific metadata keys to be included in the output. If no file path is specified, the file is saved in the current working directory with a default name based on the plate ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
file_path |
str
|
The path where the file will be saved. If not specified, the file is saved in the current working directory. |
None
|
file_format |
str
|
The format of the file ('csv', 'tsv', 'xls'). |
'csv'
|
metadata_keys |
list
|
A list of metadata keys to include in the file. If empty, all metadata except those in _default_exclude_metadata are included. |
[]
|
Raises:
Type | Description |
---|---|
ValueError
|
If an unsupported file format is specified. |
Source code in src/plate_planner/plate.py
PlateFactory
Source code in src/plate_planner/plate.py
1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 |
|
create_plate(*args, **kwargs)
staticmethod
Creates a plate object, deciding on the specific type of plate (SamplePlate or QCPlate) based on the presence of a 'QC_config' argument.
If 'QC_config' is provided and not None, a QCPlate is created with the given QC configuration. Otherwise, a SamplePlate is created. The method dynamically selects the appropriate constructor based on the provided arguments.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
*args |
Positional arguments passed directly to the plate's constructor. |
()
|
|
**kwargs |
Keyword arguments passed directly to the plate's constructor. If 'QC_config' is among these keyword arguments and is not None, a QCPlate is instantiated. Otherwise, a SamplePlate is instantiated. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Plate |
Plate
|
An instance of either SamplePlate or QCPlate, depending on the provided arguments. |
Raises:
Type | Description |
---|---|
Exception
|
If the QC scheme validation fails. |
Examples:
>>> sample_plate = PlateFactory.create_plate(plate_dim=(8, 12))
>>> isinstance(sample_plate, SamplePlate)
True
>>> # Example QC configuration for testing purposes
>>> qc_config = {
'QC': {
'start_with_QC_round': False,
'run_QC_after_n_specimens': 11,
'names': {
'EC': 'EC: External_Control_(matrix)',
'PB': 'PB: Paper_Blank',
'PO': 'PO: Pooled_specimens'
},
'patterns': {
'alternating': [['EC', 'PB'], ['EC', 'PO']],
}
}
}
>>> qc_plate = PlateFactory.create_plate(plate_dim=(8, 12), QC_config=qc_config)
>>> isinstance(qc_plate, QCPlate)
True
>>> # Creating a plate without specifying 'plate_dim', default dimensions should be used
>>> default_plate = PlateFactory.create_plate()
>>> isinstance(default_plate, SamplePlate)
True
Source code in src/plate_planner/plate.py
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 |
|
validate_qc_scheme(scheme)
staticmethod
Validates the QC scheme configuration. If a file path is provided, the method reads and validates the TOML configuration file. If a dictionary is provided, it directly validates the configuration.
Validation checks include: - Presence of essential sections and fields. - Consistency of QC sample names across sections. - Format and validity of specified patterns.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
scheme |
Union[str, Dict]
|
Path to the QC scheme TOML file or the scheme as a dictionary. |
required |
Returns:
Name | Type | Description |
---|---|---|
Dict |
Dict
|
The validated and parsed QC scheme configuration. |
Raises:
Type | Description |
---|---|
FileNotFoundError
|
If the TOML file does not exist. |
ValueError
|
If the configuration is invalid. |
Source code in src/plate_planner/plate.py
1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 |
|
QCPlate
Bases: Plate
summary
Class that represents a multiwell plate where some wells can
contain quality control samples according to the scheme defined
in QC_config; either a
Parameters:
Name | Type | Description | Default |
---|---|---|---|
Plate |
_type_
|
description |
required |
Source code in src/plate_planner/plate.py
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 |
|
as_plotly_figure(annotation_metadata_key='sample_code', color_metadata_key='sample_code', fontsize=14, title_str=None, title_fontsize=14, alpha=0.7, well_size=45, fig_width=1000, fig_height=700, colormap_continuous='Viridis', colormap_discrete='D3', text_rotation=0, show_grid=True, theme='plotly', dark_mode=False, marker_shape='circle')
Generates a Plotly figure that visualizes the plate and optional metadata
This method overrides the as_plotly_figure() from the Plate class to provide other defaults for annotaion and color based on QC and sample codes
Source code in src/plate_planner/plate.py
create_QC_plate_layout()
Creates the plate layout with QC and specimen samples based on the configuration provided.
This method initializes the QC sample placement according to the unique QC sequences defined for each round. It iterates over all the wells in the plate, placing QC samples at the specified intervals and filling the rest with specimen samples. The method handles the transition between different rounds of QC samples and ensures that each well is assigned the correct sample type metadata.
The process accounts for special configurations such as starting the plate with a QC round and adjusts the placement of QC and specimen samples accordingly. If the iterator of QC samples for a given round is exhausted, the method transitions to the next round's sequence of QC samples.
Raises:
Type | Description |
---|---|
StopIteration
|
An exception is caught to indicate the end of a QC sample sequence for a round, triggering the transition to the next round or switching back to specimen sample assignment. |
Source code in src/plate_planner/plate.py
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 |
|
define_unique_QC_sequences()
Sets up the unique QC sequences for each round based on the new config structure.
Source code in src/plate_planner/plate.py
Well
dataclass
A class to represent a well in a multiwell plate.
This class provides functionalities to represent and manipulate the properties of a well, including its name, plate ID, coordinate, index, color, and metadata.
Attributes:
Name | Type | Description |
---|---|---|
name |
str
|
The name of the well (default: "A1"). |
plate_id |
int
|
The ID of the plate the well belongs to (default: 1). |
coordinate |
Tuple[int, int]
|
The (row, column) coordinate of the well in the plate (default: (0, 0)). |
index |
int
|
The index of the well (optional). |
rgb_color |
Tuple[float, float, float]
|
The RGB color representation of the well (default: (1, 1, 1)). |
metadata |
Dict[str, Any]
|
Additional metadata for the well (default: empty dictionary). |
Example
well = Well(name="B2", plate_id=2, coordinate=(1, 6), index=13,) well Well(name='B2', plate_id=2, coordinate=(1, 6), index=13, empty=True, rgb_color=(1, 1, 1), metadata={})
Source code in src/plate_planner/plate.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
|
__eq__(other)
Compare this Well object with another for equality.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
other |
Well
|
Another Well object to compare with. |
required |
Returns:
Name | Type | Description |
---|---|---|
bool |
bool
|
True if both Well objects are considered equal, False otherwise. |
Example
well1 = Well(name="A1", plate_id=1) well2 = Well(name="A1", plate_id=1) well3 = Well(name="B1", plate_id=1) well4 = Well(name="A1", plate_id=2) well1 == well2 True well1 == well3 False well4 == well1 False
Source code in src/plate_planner/plate.py
__repr__()
Provide an unambiguous string representation of the Well object.
Returns:
Name | Type | Description |
---|---|---|
str |
str
|
A string representation of the well. |
Example
well = Well(name="B3", plate_id=2, coordinate=(1, 2), index=3) repr(well) "Well(name='B3', plate_id=2, coordinate=(1, 2), index=3, empty=True, rgb_color=(1, 1, 1), metadata={})"
Source code in src/plate_planner/plate.py
as_dict()
Converts the well object to a dictionary.
The method returns a dictionary representation of the well object with the direct attributes of the well and the keys in the metadata attribute.
Returns:
Name | Type | Description |
---|---|---|
dict |
dict
|
A dictionary representation of the well object. |
Example
Convert a Well instance to a dictionary:
well = Well(name="B2", plate_id=2, coordinate=(1, 6), index=13, rgb_color=(0.5, 0.5, 0.5)) well_dict = well.as_dict() print(well_dict) {'name': 'B2', 'plate_id': 2, 'coordinate': (1, 6), 'index': 13, 'empty': True, 'rgb_color': (0.5, 0.5, 0.5)}
Source code in src/plate_planner/plate.py
get_attribute_or_metadata(key)
Get the value of a direct attribute or a key in the metadata dictionary.
This method first checks if the provided key corresponds to a direct attribute of the well object. If not, it then checks if the key exists in the metadata dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
The attribute name or metadata key. |
required |
Returns:
Name | Type | Description |
---|---|---|
Any |
Any
|
The value of the attribute or metadata key, if found. Returns 'NaN' if not found. |
Example:
Retrieve attribute and metadata values from a Well instance:
well = Well(name="B2", plate_id=2, coordinate=(1, 1), index=5, rgb_color=(0.5, 0.5, 0.5)) well.metadata = {"sample_type": "plasma"}
well.get_attribute_or_metadata("plate_id") 2 well.get_attribute_or_metadata("sample_type") 'plasma'
Source code in src/plate_planner/plate.py
set_attribute_or_metadata(key, value)
Set the value of a direct attribute or a key in the metadata dictionary.
This method first checks if the provided key corresponds to a direct attribute of the well object. If so, it sets the value of that attribute. If not, it then updates or adds the key-value pair in the metadata dictionary.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
str
|
The attribute name or metadata key. |
required |
value |
Any
|
The value to be set for the attribute or metadata key. |
required |
Example:
Set attribute and metadata values for a Well instance:
well = Well(name="B2", plate_id=2, coordinate=(1, 1), index=5, rgb_color=(0.5, 0.5, 0.5)) well.set_attribute_or_metadata("plate_id", 3) well.set_attribute_or_metadata("sample_type", "serum")