نتایج جستجو برای: carotene

تعداد نتایج: 6802  

2017
Tian-Jun Cao Xing-Qi Huang Yuan-Yuan Qu Zhong Zhuang Yin-Yin Deng Shan Lu

Lycopene cyclases cyclize the open ends of acyclic lycopene (ψ,ψ-carotene) into β- or ε-ionone rings in the crucial bifurcation step of carotenoid biosynthesis. Among all carotenoid constituents, β-carotene (β,β-carotene) is found in all photosynthetic organisms, except for purple bacteria and heliobacteria, suggesting a ubiquitous distribution of lycopene β-cyclase activity in these organisms....

2015
Yoriko Nishide Yuko Tousen Miki Tadaishi Masaki Inada Chisato Miyaura Marlena C. Kruger Yoshiko Ishimi Paul B. Tchounwou

Soy isoflavones, genistein, daidzein and its metabolite equol, as well as β-carotene have been reported to be effective for maintaining bone health. However, it remains to be elucidated whether combining soy isoflavones with β-carotene is beneficial to bone formation. This study investigated the combined effect of soy isoflavones and β-carotene on the differentiation of MC3T3-E1 preosteoblastic...

2014
Carolien A. Van Loo-Bouwman Ton H. J. Naber Mans Minekus Richard B. van Breemen Paul J. M. Hulshof Gertjan Schaafsma

Since the food matrix determines β-carotene availability for intestinal absorption, food matrix effects on the bioaccessibility of β-carotene from two diets were investigated in vitro and compared with in vivo data. The "mixed diet" consisted of β-carotene-rich vegetables, and the "oil diet" contained β-carotene-low vegetables with supplemental β-carotene. The application of extrinsically label...

2001
Frederick E. Domann Jianfang Hu

ß -carotene is a human nutrient found in plants or animals. It is also can be synthesized chemically. It is lipid-soluble, and is yellow, orange or red in color. ß-Carotene can be cleaved into vitamin A in vivo. The most abundant form of ß-carotene in human serum is trans isomer; cis isomers such as 9-cis ß-carotene, 13-cis ß-carotene, and 15-cis ß-carotene are only present in trace amounts. ß-...

Journal: :The British journal of nutrition 2011
Supriya Veda Krishnapura Srinivasan

Animal studies were conducted to evaluate the influence of dietary spice compounds, piperine, capsaicin and ginger, on the absorption of orally administered β-carotene and its conversion to vitamin A. In rats maintained on these spice-containing diets for 8 weeks, concentrations of β-carotene and retinol were determined in the serum, liver and intestine 4 h after a single oral administration of...

2010
C. H. WHITNAH W. J. PETERSON F. W. ATKESON

In the course of an investigation of oxidized flavor in milk, it was discovered that four cows were excreting in their feces more carotene ^ than they were consuming. The flavor of the milk from each of these cows was markedly and quickly improved by adding a carotene concentrate ^ to the ration. Since Atkeson and his coworkers (1),^ Fraps and Treichler (Í0), and Moore (18) had already shown th...

2015
Trung Vo Duc Tran

Beta-carotene is a terpenoid pigment that is highly valuable due to its nutritional benefit as a precursor of vitamin A and its antioxidant properties. A marine green alga Dunaliella salina is well known for high carotene, with above 95% β-carotene, under growth-limiting conditions. Carotene contents are different among D. salina strains and under different culture conditions. Selecting a Dunal...

2003
Betty Jane Burri B. J. BURRI

Beta-carotene research has progressed rapidly in the past few years. New techniques have allowed accurate measurements of beta-carotene concentrations in plasma, tissues, and diet. New animal models, stable isotope techniques, and human depletion and repletion experiments are leading an explosion in the information about beta-carotene utilization in humans. These advances are leading to a bette...

2013
K. H. Grumbach

Biosynthesis, Carotenoids, /?-Carotene, Photosynthesis Two /7-Carotene pools were obtained in the chloroplast. It is concluded that one pool is very small like a-carotene and responsible exclusively for the biosynthesis of /?-ionone-xanthophylls. The other ^-carotene pool is proposed to be the one, that is located close to photosystem I and is involved in photosynthesis as a light protecting ag...

2009
ED KANE

Beta-carotene (ß-carotene) is one of many carotenoids found in nature. In the human nutrition field, evidence suggests that higher blood levels of ß-carotene as well as other carotenoids such as alpha-carotene, lycopene, lutein, zeaxanthin, and ß-cryptoxanthin may be associated with lower risk of several chronic diseases. ß-carotene, a-carotene, and ß-cryptoxanthin have pro-vitamin A activity, ...

نمودار تعداد نتایج جستجو در هر سال

با کلیک روی نمودار نتایج را به سال انتشار فیلتر کنید

function paginate(evt) { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term pg=parseInt(evt.target.text) var data={ "year":filter_year, "term":term, "pgn":pg } filtered_res=post_and_fetch(data,url) window.scrollTo(0,0); } function update_search_meta(search_meta) { meta_place=document.getElementById("search_meta_data") term=search_meta.term active_pgn=search_meta.pgn num_res=search_meta.num_res num_pages=search_meta.num_pages year=search_meta.year meta_place.dataset.term=term meta_place.dataset.page=active_pgn meta_place.dataset.num_res=num_res meta_place.dataset.num_pages=num_pages meta_place.dataset.year=year document.getElementById("num_result_place").innerHTML=num_res if (year !== "unfilter"){ document.getElementById("year_filter_label").style="display:inline;" document.getElementById("year_filter_place").innerHTML=year }else { document.getElementById("year_filter_label").style="display:none;" document.getElementById("year_filter_place").innerHTML="" } } function update_pagination() { search_meta_place=document.getElementById('search_meta_data') num_pages=search_meta_place.dataset.num_pages; active_pgn=parseInt(search_meta_place.dataset.page); document.getElementById("pgn-ul").innerHTML=""; pgn_html=""; for (i = 1; i <= num_pages; i++){ if (i===active_pgn){ actv="active" }else {actv=""} pgn_li="
  • " +i+ "
  • "; pgn_html+=pgn_li; } document.getElementById("pgn-ul").innerHTML=pgn_html var pgn_links = document.querySelectorAll('.mypgn'); pgn_links.forEach(function(pgn_link) { pgn_link.addEventListener('click', paginate) }) } function post_and_fetch(data,url) { showLoading() xhr = new XMLHttpRequest(); xhr.open('POST', url, true); xhr.setRequestHeader('Content-Type', 'application/json; charset=UTF-8'); xhr.onreadystatechange = function() { if (xhr.readyState === 4 && xhr.status === 200) { var resp = xhr.responseText; resp_json=JSON.parse(resp) resp_place = document.getElementById("search_result_div") resp_place.innerHTML = resp_json['results'] search_meta = resp_json['meta'] update_search_meta(search_meta) update_pagination() hideLoading() } }; xhr.send(JSON.stringify(data)); } function unfilter() { url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":"unfilter", "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } function deactivate_all_bars(){ var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(bar) { bar.dataset.active = false bar.style = "stroke:#71a3c5;" }) } year_chart.on("created", function() { var yrchart = document.querySelectorAll('.ct-bar'); yrchart.forEach(function(check) { check.addEventListener('click', checkIndex); }) }); function checkIndex(event) { var yrchart = document.querySelectorAll('.ct-bar'); var year_bar = event.target if (year_bar.dataset.active == "true") { unfilter_res = unfilter() year_bar.dataset.active = false year_bar.style = "stroke:#1d2b3699;" } else { deactivate_all_bars() year_bar.dataset.active = true year_bar.style = "stroke:#e56f6f;" filter_year = chart_data['labels'][Array.from(yrchart).indexOf(year_bar)] url=/search_year_filter/ var term=document.getElementById("search_meta_data").dataset.term var data={ "year":filter_year, "term":term, "pgn":1 } filtered_res=post_and_fetch(data,url) } } function showLoading() { document.getElementById("loading").style.display = "block"; setTimeout(hideLoading, 10000); // 10 seconds } function hideLoading() { document.getElementById("loading").style.display = "none"; } -->