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

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

Journal: :Current Biology 2002
John P. Wing Janina S. Karres Justyne L. Ogdahl Lei Zhou Lawrence M. Schwartz John R. Nambu

The Drosophila genes reaper, head involution defective (hid), and grim all reside at 75C on chromosome three and encode related proteins that have crucial functions in programmed cell death (reviewed in ). In this report, we describe a novel grim-reaper gene, termed sickle, that resides adjacent to reaper. The sickle gene, like reaper and grim, encodes a small protein which contains an RHG moti...

2011
Sanjay Pandey Sweta Pandey Rahasya Mani Mishra Monica Sharma Renu Saxena

BACKGROUND Some reports have shown that co-inheritance of α-thalassemia and sickle cell disease improves hematological parameters and results in a relatively mild clinical picture for patients; however, the exact molecular basis and clinical significance of the interaction between α-thalassemia and sickle cell disease in India has not yet been described. There is little agreement on the clinica...

Journal: :Blood 2006
Elizabeth A Manci Cheryl A Hillery Carol A Bodian Zheng G Zhang Gerard A Lutty Barry S Coller

Because Berkeley sickle cell mice are used as an animal model for human sickle cell disease, we investigated the progression of the histopathology in these animals over 6 months and compared these findings to those published in humans with sickle cell disease. The murine study groups were composed of wild-type mixed C57Bl/6-SV129 (control) mice and sickle cell (SS) mice (alpha-/-, beta-/-, tran...

Journal: :Canadian journal of surgery. Journal canadien de chirurgie 2005
Anwar Sheikha

BACKGROUND The health risks associated with sickle cell trait are minimal in this sizable sector of the world's population, and many of these patients have no information about their sickle cell status. Splenic syndrome at high altitude is well known to be associated with sickle cell trait, and unless this complication is kept in mind these patients may be subjected to unnecessary surgery when ...

2013
Pashtoon Murtaza Kasi Mrinal M. Patnaik Prema P. Peethambaram

Pegfilgrastim (Neulasta) is a recombinant filgrastim (human granulocyte colony-stimulating factor (G-CSF)) attached to a polyethylene glycol (PEG) molecule and is given as part of chemotherapy regimens that are associated with significant myelosuppression and risk for febrile neutropenia. Prescribing information available on manufacturer's website for the drug warns us about possible severe sic...

Journal: :Clinical and molecular allergy : CMA 2005
Mark E Nordness John Lynn Michael C Zacharisen Paul J Scott Kevin J Kelly

BACKGROUND: Asthma and sickle cell disease are common conditions that both may result in pulmonary complications. We hypothesized that children with sickle cell disease with concomitant asthma have an increased incidence of vaso-occlusive crises that are complicated by episodes of acute chest syndrome. METHODS: A 5-year retrospective chart analysis was performed investigating 48 children ages 3...

Journal: :The Cochrane database of systematic reviews 2016
Slimane Allali Martin Chalumeau Odile Launay Samir K Ballas Mariane de Montalembert

BACKGROUND People affected with sickle cell disease are at high risk of infection from Haemophilus influenzae type b. Before the implementation of Haemophilus influenzae type b conjugate vaccination in high-income countries, this was responsible for a high mortality rate in children under five years of age. In African countries, where coverage of this vaccination is still extremely low, Haemoph...

2009
Shabirhusain S. Abadin Mario R. Salazar Richard Y. Zhu Mark M. Connolly Francis J. Podbielski

We report a case of small bowel ischemia secondary to sickle cell disease. Acute bowel ischemia is an uncommon presentation of patients with sickle cell disease. Historically, only a handful of cases have been reported. We also provide a summary of the literature relevant to sickle cell patients with acute bowel ischemia.

Journal: :Haematologica 2005
Swapan K Dasgupta Perumal Thiagarajan

Lactadherin is a phosphatidylserine-binding glycoprotein secreted by macrophages. Less than 0.5% of normal circulating red cells showed any binding to lactadherin. However, the red cells from patients with sickle cell disease showed 2 to 10-fold increases in lactadherin binding. Further, lactadherin stimulated the phagocytosis of sickle red blood cells by macrophages suggesting a potential role...

Journal: :Haematologica 2007
Prasenjit Guchhait Swapan K Dasgupta Anhquyen Le Sarvari Yellapragada José A López Perumal Thiagarajan

Increased exposure of sickle red blood cells to phosphatidylserine promotes its adhesion to the endothelium. A monoclonal antibody to lactadherin, a phosphatidylserine binding protein, inhibits sickle cell adhesion to histamine-stimulated endothelial cells in flowing blood. Added lactadherin enhances the adhesion via the integrin alphaVbeta3. These results indicate that lactadherin can mediate ...

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

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

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