See all protocols

Generating a Growth Curve

Objective

Author(s): Pattarin Blanchard

Monitor bacterial growth over time using spectrophotometric measurements of culture density. This protocol will produce a curve that can be used to determine the target organism’s rate of growth (doubling time).

Materials

Procedure

Inoculating a new culture

It is desired to have starting optical density (OD) of 0.1 (for the sake of time) in the new flask culture. Therefore, when possible, the volume of inoculum from the mother culture has to be calculated, and the OD of the mother culture has to be measured.

  1. Using a new cuvette, blank the spectrophotometer with 600 µL water. Use a kimwipe to clean the outside of the cuvette prior to measuring. Choose an appropriate wavelength. Dump the contents into a waste beaker.
    1. E. coli: 600 nm
    2. C. crescentus (CB2A): 600 nm
    3. S. elongatus (UTEX): 750 nm
  2. Using the same cuvette, add 600 µL growth medium or diluent and measure the OD. Record this value down, as this will be subtracted from every subsequent measurement. Dump the contents and rinse the cuvette with water using a wash bottle 3 times into the waste beaker.
    1. Alternatively skip step 1 and blank with the medium, but step 1 is standard practice.
  3. Under a flame, take 1 mL of the mother culture, add it to a cuvette, and measure its OD. Note that this doesn’t measure the cell color, but rather turbidity, or light scattering.
  4. Generally OD measurements are only accurate between 0.1 and 1. If the initial reading is above 1, dilute it as necessary with medium or PBS so that the absorbance is between 0.1 and 1. Record the value and dump the contents into the waste beaker. Rinse with water 3 times, then set it face down onto a paper towel soaking with ethanol or disinfectant.
    1. A cuvette has a max volume just over 3 mL, if up to a 3x dilution is needed, it is okay to dilute in the cuvette itself and mix by pipetting up and down.
  5. Calculate the volume of inocculum needed from the mother culture. First subtract the diluent (PBS or medium) OD, then multiply by the dilution factor to get the “true” OD of the mother culture. ODtrue=(ODmeasuredODdiluent)DFOD_{true}=(OD_{measured}-OD_{diluent})\cdot DF

Then calculate the volume needed. The final volume shall be 250 mL + volume added, and the starting OD is 0.3. Note the final equation gives volume in mL, so make the appropriate conversion to uL if necessary.

OD_inocV_add=OD_start(250+V_add)OD\_{inoc}V\_{add}=OD\_{start}(250 + V\_{add}) Vadd=250 mLODstartODinocODstartV_{add}=\frac{250\text{ mL}\cdot OD_{start}}{OD_{inoc}-OD_{start}} Vadd=250 mL0.3ODinoc0.3V_{add}=\frac{250 \text{ mL}\cdot 0.3}{OD_{inoc}-0.3}
  1. Under a flame, add 250 mL of medium to a culture flask, then inocculate with VaddV_{add} calculated from the previous step.

  2. Sample 1 mL from the new culture and measure its OD using the same cuvette from earlier. Dump cuvette contents into the waste beaker and rinse 3 times with water, then set face down on a paper towel soaked with ethanol or disinfectant.

Taking measurements

  1. It is recommended a spreadsheet is used instead of a notion table because calculations will have to be performed. Set up a table like so in a spreadsheet, the initial readings should be recorded like so:

    Time (h)Dilution factorMeasured ODTrue ODInitials
    PBS1x0
    01~0.3+x~0.3
  2. An appropriate interval should be selected for the organism. For example, UTEX has an expected doubling time of around 2 hours, so samples will be taken in 1 hr intervals.

  3. For each subsequent OD measurement:

  1. Once finished, calculate the true OD using this formula: ODtrue=(ODmeasuredODPBS)DFOD_{true}=(OD_{measured}-OD_{PBS})\cdot DF

Analysing the growth curve

  1. Plotting true OD vs. time should give a curve that looks exponential or logistic. Plotting ln(ODtOD0)\ln (\frac{OD_t}{OD_0}) vs. time should give a linear section. Why this works is during the exponential growth phase, cell growth follows this differential equation:

    dXdt=μX\frac{dX}{dt}=\mu X

    Which when solved yields:

    X(t)=X0eμtX(t)=X_0e^{\mu t}

    And can be linearized as the following. Here OD is a stand-in for cell concentration XX

    ln(XX0)=μt\ln(\frac{X}{X_0})=\mu t
  2. Select the log data points in the linear section and run a linear regression versus time. The resulting slope is the growth rate μ\mu. If using LINEST, the standard error of μ\mu, Δμ\Delta \mu is the value just below it. Choose consecutive data points such that the R2R^2 is maximized, but prioritize as many data points as possible.

  3. Calculate the doubling time tdt_d:

    td=ln2μt_d=\frac{\ln 2}{\mu}

    The error in doubling time can be propagated from the error in growth rate using a first-order approximation

    Δtd=tdμΔμ=ln2μ2Δμ=ln2μ2Δμ\Delta t_d=\bigg |\frac{\partial t_d}{\partial \mu}\bigg |\Delta \mu=\bigg |\frac{\ln 2}{-\mu^2} \bigg |\Delta \mu = \frac{\ln 2}{\mu^2}\Delta \mu