Compound intake estimator: Difference between revisions
(not ready) |
(→Calculations: bug fixed in compound.intake) |
||
Line 390: | Line 390: | ||
"extraction", # Which extraction methods the user wants to consider | "extraction", # Which extraction methods the user wants to consider | ||
"addcomp" # concentrations of compounds in the essential oil (missing from default data) | "addcomp" # concentrations of compounds in the essential oil (missing from default data) | ||
# conc is the temporary ovariable for compound.conc used in calculations | |||
)), | )), | ||
formula = function(...) { | formula = function(...) { | ||
conc <- compound.conc * 10 * extraction | |||
# remove extractions that are not considered. | # remove extractions that are not considered. | ||
# compound.conc from w/w% to mg/g | # compound.conc from w/w% to mg/g | ||
# oapply would be an alternative to remove extra indices, but there is a bizarre error. | |||
# compound.conc <- oapply(compound.conc, cols = "Extraction.technique", fun = mean) | |||
test <- colnames(conc@output) != "Extraction.technique" | |||
conc@marginal <- conc@marginal[test] | |||
conc@output <- conc@output[test] # unit: mg /g | |||
# removes index Extraction.technique, which is no longer needed. | # removes index Extraction.technique, which is no longer needed. | ||
conc@output <- orbind(conc, addcomp * 1) | |||
# addcomp must not contain columns that are not in | # addcomp must not contain columns that are not in conc. It must contain Compound. | ||
# It is multiplied by 1 to make the result column name "Result". | # It is multiplied by 1 to make the result column name "Result". | ||
out <- (food.amount * fr.const / 100 + oil.amount) * conc / 60 | |||
out <- (food.amount * fr.const / 100 + oil.amount) * | |||
# calculates the oil intake from food supplement and then adds direct oil intake. | # calculates the oil intake from food supplement and then adds direct oil intake. | ||
# scale to 60 kg person | # scale to 60 kg person |
Revision as of 06:15, 3 April 2014
Moderator:Jouni (see all) |
|
Upload data
|
Compound intake estimator calculates intakes of compounds based on food or food supplement intake, compound concentration in food, and guidance values for the compound.
Question
How to estimate intakes and compare them to guidance values?
Answer
Intake and risk estimates
The concern indicator is calculated for each compound separately. If the intake is smaller than the threshold of concern, the indicator is < 1 and there is no concern. The threshold of concern is acceptable daily indake (ADI), benchmark dose (BMDL10), or threshold of toxicological concern (TTC), depending on what data is available for each compound.
Compound concentrations
The following code allows to calculate the mean and median value of the concentration of each compound in the input data.
For seeing details of what the code actually does, click Show code. The code will appear, with documentation of each part on rows starting with ###. In brief, the code reads a piece of concentration and other data from Opasnet database, selects the rows defined by the user through the interface above, and shows the data on a summary table and a few graphs.
Rationale
Benefit-risk assessment
The idea of the tool is to look at consumption of a particular PFS product, and estimate whether any of the compounds in the product cause concern. The estimation follows this equation:
compound intakes = product intake (g /day) * concentration of each compound in the product (mg /g) / 60 (60 kg is the assumed body weight of the person) concern indicator = compound intakes (mg /kg /d) / threshold of concern (mg /kg /d)
The concern indicator is calculated for each compound separately. If the intake is smaller than the threshold of concern, the indicator is < 1 and there is no concern. The threshold of concern is acceptable daily indake (ADI), benchmark dose (BMDL10), or threshold of toxicological concern (TTC), depending on what data is available for each compound.
You can fill in the following information:
- Name of plant food supplement (PFS) product. If this is given, it is shown on the graphs and outputs as title.
- Fraction of essential oil in the supplement. How much (as a percentage) does the total product contain the essential oil?
- Amount of supplement per day. How much is the supplement (the total product) consumed per day (given as grams of product per day)?
- The compound concentration data is taken from a table on this page. However, if you know that the product contains something that is not listed in the table, you may add the information here.
- Name of additional compound. The name is used to combine the concentration data with toxicological data. So, the name should be found in one of these two tables on this page: Cramer classes of compounds, or Guidance values.
- Concentration of the additional compound in the supplement. This is given as mg of compound per g of PFS product.
- Show intermediate results? If Yes is selected, you will see a table of intake estimates for each compound, and the same data as a graph. Otherwise, only a default output is shown (see below).
- Which extraction techniques to consider? Different extraction methods result in different concentration estimates even from the same product. Some of the toxicological information is given having a particular extraction method in mind, and it is not always possible to use toxicological information with any concentration information. Therefore, if you know that some extraction methods should not be used to estimate toxicology, you can unselect them from the list.
- The default outcome shows a graph where the level of concern is shown for each compound. However, because there are dozens of compounds in any product, the graph shows only those which has the level more than one, i.e. those compounds that need further scrutiny.
Concentrations
The concentration code allows to calculate the mean and median value of the concentration of each compound that appear in table in a new page. In addition, it is possible to plot the concentration (expressed as percentage of essential oil) of each compound reported in the table below. Each single value is reported in the chart.
Data
Obs | Extraction.technique | Compound | Result | Reference |
---|---|---|---|---|
1 | Superheated water extraction, 100 °C | 2-Carene | 0.08; 0.1; 0.12 | Jayawardena & Smith, 2010 |
2 | Superheated water extraction, 100 °C | Z-Cinnamaldehyde | 1.63; 2.1; 2.57 | Jayawardena & Smith, 2010 |
3 | Superheated water extraction, 100 °C | Cinnamaldehyde | 81.14; 83.7; 86.26 | Jayawardena & Smith, 2010 |
4 | Superheated water extraction, 100 °C | Eugenol | 0.45; 0.8; 1.15 | Jayawardena & Smith, 2010 |
5 | Hydrodistillation | 1,8-Cineole | 0.2 | Chericoni et al, 2005 |
6 | Superheated water extraction, 100 °C | Cinnamyl acetate | 5.47; 7.2; 8.93 | Jayawardena & Smith, 2010 |
Calculations
- You need to run the code below only if you update the data tables on this page.
Using different data on different layers: [1].
Extraction techniques
Obs | Extraction.technique | Notes |
---|---|---|
1 | Not known | |
2 | Hydrodistillation | |
3 | Solvent extraction | |
4 | Steam distillation | |
5 | Supercritical fluid extraction, 120 bar, 40 °C | |
6 | Supercritical fluid extraction, 90 bar, 40 °C | |
7 | Supercritical fluid extraction, 90 bar, 50 °C | |
8 | Superheated water extraction, 100 °C | |
9 | Superheated water extraction, 150 °C | |
10 | Superheated water extraction, 200 °C | |
11 | Solid phase |
Data about guidance values
Obs | Compound | Guidance | Result | Notes |
---|---|---|---|---|
1 | 1,8-Cineole | ADI | 2.8 | |
2 | 4-Terpineol | ADI | 1.2 | |
3 | Benzylbenzoate | ADI | 5 | |
4 | Cinnamaldehyde | ADI | 0.7 | |
5 | Coumarin | TDI | 0.1 | |
6 | Estragole | BMDL10 | 3.3-6.5 | Data said BMD10 but probably BMDL10 |
7 | Eugenol | ADI | 2.5 | |
8 | Fenchone | ADI | 10.64 | |
9 | Limonene | ADI | 1 | |
10 | Linalool | ADI | 0.5 | |
11 | Myrcene | ADI | 2.5 | |
12 | Trans-anethole | ADI | 2 | |
13 | Safrole | BMDL10 | 1.9-5.1 | |
14 | α-Terpineol | ADI | 1.2 |
Obs | Cramer class | Threshold of toxicological concern | Description |
---|---|---|---|
1 | 1 | 30 | |
2 | 2 | 1.5 | |
3 | 3 | 1.5 | |
4 | 4 | 0.0025 | This comes from Apiole?! Is this correct? |
Values 30 and 1.5 µg /kg /d come from EFSA (2012)[2]
Cramer classes of compounds | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
See also
- heande:Composition of cinnamon dried bark essential oil
- heande:Composition of plant-based food supplements
- Compound intake estimator
References
- ↑ New data obtained from Antonella Guzzon, personal communication (email) 31 March 2014.
- ↑ EFSA (2012). Scientific Opinion on Exploring options for providing advice about possible human health risks based on the concept of Threshold of Toxicological Concern (TTC). EFSA Journal 2012;10(7):2750