نتایج جستجو برای: sole bitter vetch

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

2017
Fengyan Cai Zhiyong Yang Robert S. Wyer Alison Jing Xu

• Drinking a bitter beverage increases happy participants' inclination to save money. • Drinking a bitter beverage decreases unhappy participants' inclination to save money. • Priming bitterness-related concepts increases happy participants' inclination to save money. • Priming bitterness-related concepts decreases unhappy participants' inclination to save money. • Drinking a bitter beverage de...

A. Nikkhah A. Teimouri-Yansari A.A. Sadeghi P. Shawrang S. Golchin-Gelehdooni,

Comparative effects of extrusion cooking and conventional processing methods (cooking and autoclaving) on anti-nutritional factors and subsequent effects on in vitro and in vivo digestibility of Vicia ervilia in broilers were investigated. Treatments had significant effect (P

Journal: :Journal of neurophysiology 2005
Christian H Lemon David V Smith

Based on the molecular findings that many bitter taste receptors (T2Rs) are expressed within the same receptor cells, it has been proposed that bitter taste is encoded by the activation of discrete neural elements. Here we examined how a variety of bitter stimuli are represented by neural activity in central gustatory neurons. Taste responses (spikes/s) evoked by bathing the tongue and palate w...

2015
Natacha Roudnitzky Maik Behrens Anika Engel Susann Kohl Sophie Thalmann Sandra Hübner Kristina Lossow Stephen P. Wooding Wolfgang Meyerhof Takashi Gojobori

The ability to taste bitterness evolved to safeguard most animals, including humans, against potentially toxic substances, thereby leading to food rejection. Nonetheless, bitter perception is subject to individual variations due to the presence of genetic functional polymorphisms in bitter taste receptor (TAS2R) genes, such as the long-known association between genetic polymorphisms in TAS2R38 ...

Journal: :journal of herbal drugs 0
majied hashemi department of animal sciences, faculty of agriculture, islamic azad university, shahrekord branch, shahrekord, iran sayed mohammad ali jalali department of animal sciences, faculty of agriculture, islamic azad university, shahrekord branch, shahrekord, iran farshid kheiri department of animal sciences, faculty of agriculture, islamic azad university, shahrekord branch, shahrekord, iran

background & aim: the fruit of citrullus colocynthis has a bitter taste and antibacterial properties against pathogen factors.the aim of current research was to study the effects of different dietary level of bitter cucumber fruit powderwith and without protexin probiotic supplementation on growth performance, carcass traits and intestinal morphology of broiler chicks. experimental: two hundred...

Journal: :Journal of environmental quality 2001
P J Rice L L McConnell L P Heighton A M Sadeghi A R Isensee J R Teasdale A A Abdul-Baki J A Harman-Fetcho C J Hapeman

Current vegetable production systems use polyethylene (plastic) mulch and require multiple applications of agrochemicals. During rain events, runoff from vegetable production is enhanced because 50 to 75% of the field is covered with an impervious surface. This study was conducted to quantify off-site movement of soil and pesticides with runoff from tomato (Lycopersicon esculentum Mill.) plots ...

Journal: :Journal of oleo science 2018
Jia Chen Lei Liu Mengjun Li Xiuzhu Yu Rui Zhang

An improved colorimetric method for determination of cyanide content in bitter almond oil was developed. The optimal determination parameters were as follows: volume ratio of hydrochloric acid to bitter almond oil (v/v), 1.5:1; holding time for hydrolysis, 120 min; and volume ratio of distillation solution to bitter almond oil (v/v), 8:1. Analytical results showed that the relative standard dev...

Journal: :Science 2005
Makoto Sugita Yoshiki Shiba

The recent discovery of mammalian bitter, sweet, and umami taste receptors indicates how the different taste qualities are encoded at the periphery. However, taste representations in the brain remain elusive. We used a genetic approach to visualize the neuronal circuitries of bitter and sweet tastes in mice to gain insight into how taste recognition is accomplished in the brain. By selectively ...

2011
Tiffani A. Greene Suzanne Alarcon Anu Thomas Eli Berdougo Benjamin J. Doranz Paul A. S. Breslin Joseph B. Rucker

Bitter taste stimuli are detected by a diverse family of G protein-coupled receptors (GPCRs) expressed in gustatory cells. Each bitter taste receptor (TAS2R) responds to an array of compounds, many of which are toxic and can be found in nature. For example, human TAS2R16 (hTAS2R16) responds to β-glucosides such as salicin, and hTAS2R38 responds to thiourea-containing molecules such as glucosino...

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

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

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"; } -->