Circulatory Fluxes

Each Circulatory Flux (FCirc) calculation is performed per labeled element, and requires the following values/metadata to have been supplied by the researcher:

  • Animal Body Weight
  • Infusion Rate
  • At least 1 serum sample, with:
    • tissue name containing "serum".
    • collection time
    • A peak group for every tracer the animal was infused with
    • Note: The intact FCirc calculations require the detection of a fully labeled tracer in each of the infused tracers' PeakGroups.
  • MS Run Date
    • Note: reruns take precedence over previous runs
    • If this date is not provided, and the last serum sample was run multiple times, an arbitrary run is selected

Rates of Appearance/Disappearance (Ra/Rd)

TraceBase computes four distinct values for circulatory fluxes i) intact rate of disappearance \(R_{d,intact}\), ii) intact rate of appearance \(R_{d,intact}\), iii) averaged rate of disappearance \(R_{d,avg}\) and iv) averaged rate of appearance \(R_{a,avg}\). Rates of disappearance measure the overall rate of appearance for a metabolic compound, whereas rate of appearances are corrected for the tracer infusion rate.

Intact denotes that the rate was computed using the labeling fraction of the infused isotopologue. For example, if uniformly labeled glucose (U13-glucose) is infused, the intact rates are computed using the M+6 (C_labled = 6) labeling fraction of circulating glucose-u. Thus, the intact rate of appearance \(R_{a,intact}\), and the intact rate of disappearance \(R_{d,intact}\) are computed as:

\[ R_{a,intact} = \frac{1}{ L_{intact}} T \]
\[ R_{a,intact} = \frac{(1-L_{intact})} { L_{intact} } T \]

where \(L_{intact}\) (fraction) is the labeling fraction of the infused isotopologue. \(T\) is the molar infusion rate, computed from the weight normalized infusion rate \(I\) (infusion_rate) and the tracer concentration \(C\) (tracer_concentration):

\[ T = I \times C \]

Average denotes that the rate was computed using an averaged labeling fraction across all isotopologues of the infused tracer compound \(L_{avg}\) (enrichment_fraction). The average labeling fraction, also termed enrichment fraction, is computed from the weighted average of all labeling fractions. We note that averaged labeling fractions are computed for either nitrogen or carbon.

\[ L_{avg} = \frac{\sum_i^M i\, L_{i} }{M} \]

where \(M\) is either the number of nitrogens or number of carbons, \(L_i\) is the labelling fraction for an isotopologue that contains \(i\) heavy nitrogens or carbons. Using the averaged labeling fraction, averaged Rates are computed as follows:

\[ R_{a,intact} = \frac{1}{ L_{avg}} T \]
\[ R_{a,intact} = \frac{(1-L_{avg})} { L_{avg} } T \]

By default, circulatory fluxes are based on the animal weight normalized in fusion rate \(I\) resulting in units nmol/min/gBW. In some cases, e.g. when body weight primarily varies due to fat accumulation, it is advantageous to compare circular fluxes on a per animal instead of per weight basis. For this case, TraceBase offers per animal values for each of the above defined rates. These values are computed from the weight normalized rates, by multiplying with the animal weight \(W\) (animal_body_weight):

\[ R_{animal} = R \times W \]

Links to the source code of these calculations can be found here:

  • Rd_intact_g = infusion_rate * tracer_concentration / fraction (source)
  • Ra_intact_g = Rd_intact_g - infusion_rate * tracer_concentration (source)

  • Rd_avg_g = infusion_rate * tracer_concentration / enrichment_fraction (source)

  • Ra_avg_g = Rd_avg_g - infusion_rate * tracer_concentration (source)

  • Rd_avg = Rd_avg_g * animal_body_weight (source)

  • Ra_avg = Ra_avg_g * animal_body_weight (source)

  • Rd_intact = Rd_intact_g * animal_body_weight (source)

  • Ra_intact = Ra_intact_g * animal_body_weight (source)