Automating qPCR Workflows with 96‑Well Microplates

The pandemic taught us that speed and reproducibility are not luxuries – they are necessities. If you are still pipetting each reaction by hand, you are losing precious time and inviting variability. In this post I walk you through a practical, step‑by‑step way to automate quantitative PCR (qPCR) using standard 96‑well microplates. The goal is to get you from a cluttered bench to a smooth, robot‑driven workflow without needing a PhD in engineering.

Why automate qPCR now?

Even before COVID‑19, labs were juggling dozens of plates a week. Today, high‑throughput projects, clinical diagnostics, and CRISPR screens demand dozens of plates per day. Manual pipetting becomes a bottleneck, and human error rates climb as fatigue sets in. Automation solves both problems: it frees your hands for the science you love and delivers consistent volumes down to the nanoliter.

Choose the right 96‑well plate

Plate material matters

Most qPCR kits recommend clear, thin‑walled plates made of polystyrene. The thin wall allows rapid heat transfer, which is critical for accurate cycle thresholds (Ct). If you pick a thick‑walled plate, you will see delayed temperature changes and higher Ct values – a subtle but real source of error.

Well geometry and sealing

Standard 96‑well plates have a 6.4 mm diameter well and a 10 mm depth. Make sure the plate you buy matches the dimensions of your liquid‑handling robot’s gripper. Also, choose a reliable sealing film or adhesive lid. A loose seal can cause evaporation, especially during the high‑temperature denaturation step.

Compatibility with your robot

Most commercial robots (e.g., Tecan, Hamilton, Opentrons) come with a list of compatible plates. Check the manufacturer’s catalog and verify that the plate’s barcode can be read by the robot’s scanner. If you are unsure, run a quick test with a dummy plate before committing expensive reagents.

Setting up the robot

Load the deck layout

  1. Place the tip rack – Fill the designated slot with filtered tips that match the volume range you will use (usually 5‑200 µL for qPCR master mix).
  2. Add the source plate – This holds your master mix, primers, and probes. Use a low‑profile plate to keep the robot’s arm within reach.
  3. Insert the destination plate – This is the 96‑well PCR plate that will go into the thermal cycler.
  4. Add a waste container – Always have a place for used tips; it keeps the deck tidy and prevents cross‑contamination.

Calibrate the robot

Run the robot’s built‑in calibration routine. It will ask you to confirm the position of each labware item. Take a moment to double‑check that the plate sits flush; a tilted plate can cause the pipette tip to miss the bottom, leading to inaccurate volumes.

Program the liquid‑handling steps

Below is a simple script outline (pseudocode) that works on most platforms:

for each well in destination plate:
    aspirate master mix (20 µL) from source plate
    dispense into destination well
    aspirate primer‑probe mix (5 µL) from source plate
    dispense into same well
    mix gently (3 times, 10 µL)

Adjust the volumes to match your kit’s recommendations. The key is to keep the number of tip changes low – you can reuse a tip for the same reagent across the whole plate, but never reuse a tip that has touched a sample.

Running the qPCR

Thermal cycler integration

Many modern cyclers (e.g., Bio‑Rad CFX, Applied Biosystems QuantStudio) have a “plate‑in” sensor that can be triggered by the robot. If your robot supports it, program a “pause” after the last dispense so the robot can place the plate into the cycler automatically. If not, simply have a clear hand‑off point: the robot finishes loading, beeps, and you slide the plate in.

Seal and spin

After loading, apply the sealing film. A quick spin (centrifuge at 1000 × g for 30 seconds) removes bubbles that could interfere with fluorescence detection. This step can also be automated if you have a plate‑centrifuge on the deck.

Run the program

Load the qPCR protocol on the cycler: reverse transcription (if needed), initial denaturation, then 40 cycles of denaturation, annealing, and extension. Most kits provide a recommended thermal profile; stick to it unless you have a good reason to tweak.

Data capture and quality control

Exporting results

When the run finishes, the cycler exports a .csv file with Ct values for each well. Set the cycler to save the file to a network drive that your analysis software can read. This eliminates the need to manually copy files and reduces the chance of mislabeling.

Automated QC checks

Write a short script (Python or R) that flags wells with:

  • Ct > 35 (possible low template)
  • Ct < 10 (possible contamination)
  • No amplification curve (failed reaction)

You can even have the robot pause and alert you if a certain number of wells fail QC, giving you a chance to repeat the plate before moving on.

Back‑up and documentation

Every automated run should generate a log file that records deck layout, tip usage, and timestamps. Store these logs alongside the raw data. In my lab we keep a simple spreadsheet that links the log file name to the experiment ID – it makes troubleshooting a breeze later.

A personal note

When I first tried to automate a 96‑well qPCR, I was convinced the robot would be a magic wand. The first run produced a handful of “no‑template” wells that I could not explain. After a quick review of the log, I discovered that the tip rack was slightly out of alignment, causing the robot to miss the bottom of the well on the last few columns. A tiny adjustment saved the entire experiment. The lesson? Automation is powerful, but it still needs a human eye.

Now, with the workflow locked down, I can set up a 96‑well plate in under ten minutes and let the robot do the rest. The extra time lets me dive deeper into data analysis, design new primers, or even take a coffee break without guilt.


Reactions