نتایج جستجو برای: transmitted malaria

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

2014
Ranjan Ramasamy

The four main Plasmodium species that cause human malaria, Plasmodium falciparum, Plasmodium vivax, Plasmodium malariae, and Plasmodium ovale, are transmitted between humans by mosquito vectors belonging to the genus Anopheles. It has recently become evident that Plasmodium knowlesi, a parasite that typically infects forest macaque monkeys, can be transmitted by anophelines to cause malaria in ...

2014
Tulika Chandra S Nishat Fatima Rizvi Devisha Agarwal

Transfusion transmitted infections are major problem associated with blood transfusion. Accurate estimates of risk of TTIs are essential for monitoring the safety of blood supply and evaluating the efficacy of currently employed screening procedures. The present study was carried out to assess the percentage of voluntary donors and replacement donors and to find out prevalence and changing tren...

Journal: :Asian Journal of Research in Infectious Diseases 2022

Malaria is an infectious protozoan parasitic disease transmitted by Anopheles spp mosquito. As a entity, malaria still major global health problem due to its morbidity and mortality that endangered millions of individuals inhabitants in tropical region. Kidney derangement moderately frequent severe caused the species P. falciparum also malariae, but seldom this condition has been reported vivax...

2017
Hong Lin Shaowen Zhu Shengjiang Zhu Lei Shao Nan Zhu Chengyin Huang Jun Sun

The risk of transfusion-transmitted malaria is a major concern in many countries. This study investigated the prevalence of malaria antibodies and parasitemia in eligible blood donors in Jiangsu, in Eastern China. Malaria antibodies were detected in 2.13% of the 704 plasma samples studied. We found that the prevalence of malaria antibodies was not significantly correlated with gender, occupatio...

Journal: :The Journal of hospital infection 2001
S Piro M Sammud S Badi L Al Ssabi

We describe two cases of malaria occurring in a malaria-free zone in two in-patients, two weeks after a case of Plasmodium falciparum malaria, acquired in Burkina Faso, had been admitted to the same ward. After reviewing the techniques used by nursing staff, we conclude that transmission probably occurred via gloves contaminated following manipulation of venous cannulae and drip lines of the pa...

Journal: :The New England journal of medicine 2001
M Mungai G Tegtmeier M Chamberland M Parise

BACKGROUND Transfusion-transmitted malaria is uncommon in the United States. After the report of three cases of complicated Plasmodium falciparum infection acquired by transfusion, we reviewed all cases of transfusion-transmitted malaria reported to the Centers for Disease Control and Prevention (CDC) from 1963 through 1999. METHODS Information on the patients was from surveillance reports se...

2009
Krongthong Thimasarn

Malaria is the most important tropical disease that causes enormous economic loss to mankind. Malaria is an acute disease caused by parasites in human blood, namely Plasmodium. Four human malaria parasites were found among which Plasmodium falciparum is the most common species and may lead to mortality. The disease is transmitted by anopheles mosquitoes. Globally, there are some 60 anopheles mo...

Journal: :Indian journal of entomology 2023

In India National Vector Borne Diseases Control programme is an umbrella organization for management and control of six out eight insect-borne human diseases, viz., Malaria, Lymphatic Filariasis (LF), Kala-azar, Dengue/ Chikungunya, Japanese Encephalitis. Of these, committed elimination the first three diseases from country. 8.6% India’s total population belongs to tribal community yet contribu...

2012
Alex K. Owusu-Ofori Imelda Bates

BACKGROUND Policies concerning the prevention of transfusion transmitted malaria (TTM) are the responsibility of blood transfusion services and malaria control programmes. To prevent spreading drug resistance due to over-use of malaria drugs, recent malaria treatment guidelines recommend prompt parasitological confirmation before treatment is started. In contrast, blood safety policies from the...

Journal: :South African medical journal = Suid-Afrikaanse tydskrif vir geneeskunde 2014
Sipho Kenneth Dlamini

Malaria may be encountered in parts of South Africa not known to have malaria, in ways not typical of how it is usually transmitted or acquired. In this issue of SAMJ two articles discuss two clinical forms of malaria in non-endemic areas, imported malaria and odyssean malaria. Imported malaria is defined as malaria presenting in a country other than that in which it was acquired, while odyssea...

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

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

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