Getting Started

Install platemap#

To install platemap from pypi

$ pip install platemap

To install from github

$ git clone https://github.com/LondonBiofoundry/platemap.git
cd platemap
python setup.py install

Create your first plate ๐ŸŽ‰#

It's a simple as

import platemap
my_96_well_plate = platemap.Plate(size=96, rows=8, columns=12)
tip

To save time, for standard plate sizes [6, 24, 96, 384, 1536] you dont need to specify columns and rows

Or even simpler as

import platemap
my_96_well_plate = platemap.Plate(size=96)