Getting StartedInstall platemap#To install platemap from pypi$ pip install platemapCopyTo install from github$ git clone https://github.com/LondonBiofoundry/platemap.gitCopycd platemapCopypython setup.py installCopyCreate your first plate ๐#It's a simple asimport platemapmy_96_well_plate = platemap.Plate(size=96, rows=8, columns=12)CopytipTo save time, for standard plate sizes [6, 24, 96, 384, 1536] you dont need to specify columns and rowsOr even simpler asimport platemapmy_96_well_plate = platemap.Plate(size=96)Copy