Skip to content

Tutorial Mappingfiles

  • Mappingfile A (96-Well Motherplate -> 384-Well Assay Transfer plate)
  • Mappingfile B (384-Well Assay Transfer plate -> 384-Well Activity Determination plate)

Use the function parse_mappingfile to parse mappingfiles generated by the barcode reader

import pandas as pd

input_excel = pd.read_excel("")

mapping_a = parse_mappingfile("")
input_excel = pd.merge(input_excel, mapping_a, on="MP_Barcode")

mapping_b = parse_mappingfile("")
input_excel = pd.merge(input_excel, mapping_b, on="AsT_Barcode")