Insulin Tolerance Test

Dave Bridges, Molly C Mulcahy, JeAnna R. Redd

Published: 2022-03-08 DOI: 10.17504/protocols.io.b5zxq77n

Abstract

Insulin tolerance tests are a standard and common method for evaluating the insulin sensitivity of an animal. In this assay, animals are fasted to normalize blood glucose and then challenged by an intraperitoneal injection of insulin. As glucose is transported into tissues and glucose production is suppressed, glucose levels drop. A more insulin sensitive animal will have a larger decrease in blood glucose. This has advantages over a glucose tolerance test which measures both insulin sensitivity and insulin responsiveness.

Steps

Preparation

1.

Remove food from mice for about 6h by putting them in a fresh cage. Add do not feed tag to cages, or ideally move cage to procedure room. Try to make sure that the mice are in a quiet, undisturbed temperature-controlled room with the lights on.

2.

Typically starve the mice at 8AM and aim to start injections at 2PM

3.

Prepare a 1 g/10mL solution of glucose in case some animals become hypoglyemic.

4.

Weigh mice, mark tails if necessary with different colors for rapid identification and take fasting glucose measurement via a tail clip.

Assay

5.

Prepare insulin syringes with 10 uL per g mouse weight (ie for a 30g mouse, 300 uL).

6.

At approximately 1 min intervals, inject anappropriate amount of insulin into intraperitoneal cavity of the mouse.

6.1.

Immobilize mouse and restrain tail with one hand.

6.2.

Aim needle between the midline and the hip bone.

6.3.

Insert syringe (do not inject) into cavity.

6.4.

Eject syringe.

7.

At desired intervals (normally 15, 30, 45, 60, 75, 90, 105 and 120 min), take blood glucose measurements from tail vein. If needed re-snip the tail vein. When measuring glucose just lift the tail of the mouse, while leaving it in the cage, rather than removing and restraining the mouse, which can be more stressful.

7.1.

If blood glucose drops below 10 mg/dL, or the animal appears catatonic, inject 300 uL of the glucose solution prepared above to rescue the mice and prevent hypoglycmic shock. Ignore the data from this mouse from that point on.

Analysis

8.

Analyze data by both % change from fasting glucose and absolute values. Our preferred outcome is to report fasting glucose levels and report percent change as a figure

9.

The preferred statistical model is a mixed linear model using the time points as ordinate values and testing for a main effect or an interaction of the treatment/genotype. Use the R lme4 package for this.

10.

You may also want to calculate the initial rate of glucose decline, as a measure of acute insulin response before hypoglycemic adaptations occur.

10.1.

First, filter your ITT data to contain only the observations from where animals are in the initial drop of the experiment. This is usually 30-45 minutes, but you should assess this for each ITT yourself.

10.2.

You then need to construct a linear model for your data. It should include 1 covariate for every experimental variable (eg, time, genotype, sex, diet, injection). You should also include an interaction variable for time and the variable of interest. This will be the crucial value that you interpret different slopes of the initial drop from.

10.3.

After creating the model, you will need to assess the significance of that model. Do this using the anova command in R. This will give you the covariate p values.

10.4.

Next, to find the beta estimates, you will need to run the coefficient command in R. This will tell you the actual changes in glucose (mg/dL) for each covariate. The beta coefficient of interest is the one corresponding to the interaction variable you coded in step 2.

10.5.

Sample R code

new.data.set <-original.data.set%>% filter(time=="0"| time == "15" | time == "30"| time =="45")

drop.data.lm <- lm (formula = ( glucose ~ time + treatment + time:treatment, data = new.data.set)

anova(drop.data.lm)

coefficients(drop.data.lm)

Taking into Account Differences in Fat Mass

11.

Since most glucose is taken up into non-fat tissues, it can be confounding if you dose based on total body weight, and the two groups differ greatly with respect to the amount of fat mass. A fat mouse and a lean mouse are likely to have very similar fat-free masses, and by giving more insulin to the fatter animal (because body weight is higher) you might make the fatter mouse seem more insulin sensitive, but really its just responding to a larger amount of insulin. In these cases the preferred practice is to measure fat free mass by echoMRI, and then dose animals at approximately 1 U/kg of lean mass for a lean animal or 2.5 U/kg of lean mass for an obese animal.

推荐阅读

Nature Protocols
Protocols IO
Current Protocols
扫码咨询