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

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

Journal: :American journal of physiology. Gastrointestinal and liver physiology 2002
Faiza Abdu Gareth A Hicks Grant Hennig Jeremy P Allen David Grundy

Somatostatin [somatotropin release-inhibitory factor (SRIF)] has widespread actions throughout the gastrointestinal tract, but the receptor mechanisms involved are not fully characterized. We have examined the effect of selective SRIF-receptor ligands on intestinal peristalsis by studying migrating motor complexes (MMCs) in isolated segments of jejunum from rats, mice, and sst(2)-receptor knock...

زراعتی, فاطمه, شیخ, نسرین, ملکوتی , سیدمنصور, نادی, ابراهیم, عراقچیان , ملیحه ,

In comparison of effects of various drugs with the same indications produced by different companies or comparing drugs manufactured in Iran with their foreign counterparts may result in producing drugs with higher qualities in our country. In this study the spasmolithic effect of two herbal drugs , gripe mixture and caraway mixture , that are prescribed as spasmolithic ...

Journal: :Infection and immunity 2014
Maria M Figueiredo Beatriz Deoti Izabela F Amorim Aldair J W Pinto Andrea Moraes Carolina S Carvalho Sydnei Magno da Silva Ana C B de Assis Ana M C de Faria Wagner L Tafuri

Using flow cytometry, we evaluated the frequencies of CD4(+) and CD8(+) T cells and Foxp3(+) regulatory T cells (Tregs) in mononuclear cells in the jejunum, colon, and cervical and mesenteric lymph nodes of dogs naturally infected with Leishmania infantum and in uninfected controls. All infected dogs showed chronic lymphadenitis and enteritis. Despite persistent parasite loads, no erosion or ul...

Journal: :American journal of physiology. Gastrointestinal and liver physiology 2013
Steven D Coon John H Schwartz Vazhaikkurichi M Rajendran Lisa Jepeal Satish K Singh

Glucose-dependent insulinotropic polypeptide (GIP) secreted from jejunal mucosal K cells augments insulin secretion and plays a critical role in the pathogenesis of obesity and Type 2 diabetes mellitus. In recent studies, we have shown GIP directly activates Na-glucose cotransporter-1 (SGLT1) and enhances glucose absorption in mouse jejunum. It is not known whether GIP would also regulate other...

1998
Ki Ju Han In Seob Jung Chan Kyu Kim Sung Kyu Park Dong Won Kim Seung Ho Baick Jong Ho Won Dae Sik Hong Seung Duk Hwang Chul Moon Hee Sook Park

CMV infection may occur anywhere in the gastrointestinal tract. Among the small intestine, ileum is the most common site of CMV disease and infection of jejunum is a rare one in patients with CMV gastroenteritis. Although rare, the reason why the recognition of this diagnosis is important is that it cause the lethal hemorrhage and perforation of gastrointestinal tract when its diagnosis and tre...

Journal: :The Iraqi Journal of Agricultural science 2021

This study was conducted to estimate the effect of adding different levels turmeric powder and curcumin on broiler performance, carcass traits, immunity response jejunum histology. A total 750 Ross day old chicks obtained from a local hatchery distributed into two rearing conditions (normal heat stress condition) with five treatments 3 replicate for each one had (25 chicks). Dietary supplements...

2015
Umashankkar Kannan Amir A. Rahnemai-Azar Ashish N. Patel Vinaya Gaduputi Ajay K. Shah

A 55-year-old male presented to the emergency department with sudden onset of diffuse abdominal pain for one day. Physical examination was remarkable for tenderness in the umbilical region. A CT scan of the abdomen showed intussusception involving the jejunum without any mass. The patient then underwent an exploratory laparotomy. During surgery, the distal jejunum was intussuscepted with mesent...

Journal: :Journal of animal science 2011
T A Woyengo J C Rodriguez-Lecompte O Adeola C M Nyachoti

An experiment was conducted to determine the effect of dietary phytic acid (PA) and phytase supplementation on small intestinal histomorphology and Na-dependent glucose transporter 1 (SGLT1) gene expression in piglets. Twenty-four piglets with an average initial BW of 7.60 ± 0.73 kg were randomly assigned to 3 experimental diets, to give 8 piglets per diet. The diets were a casein-cornstarch-ba...

2014
Harnam Singh Pankaj Shivhare Pankaj Dugg Sushil Mittal Ashwani Kumar Sona Goyal

ABSTRACT Introduction: Metastatic squamous cell carcinoma of proximal jejunum is rare presentation, in which the diagnosis is made only after biopsy. A rare case of metastatic squamous cell carcinoma of jejunum with unknown primary is reported here. Case Report: A 75­year­ old female was presented with recurrent episodes of nausea and vomiting. On the basis of radiological investigation, diagno...

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

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

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