نتایج جستجو برای: reservoir host

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

Journal: :Proceedings. Biological sciences 2015
Raina K Plowright Peggy Eby Peter J Hudson Ina L Smith David Westcott Wayne L Bryden Deborah Middleton Peter A Reid Rosemary A McFarlane Gerardo Martin Gary M Tabor Lee F Skerratt Dale L Anderson Gary Crameri David Quammen David Jordan Paul Freeman Lin-Fa Wang Jonathan H Epstein Glenn A Marsh Nina Y Kung Hamish McCallum

Viruses that originate in bats may be the most notorious emerging zoonoses that spill over from wildlife into domestic animals and humans. Understanding how these infections filter through ecological systems to cause disease in humans is of profound importance to public health. Transmission of viruses from bats to humans requires a hierarchy of enabling conditions that connect the distribution ...

Journal: :The Journal of Experimental Medicine 1941
Richard E. Shope

1. The presence of masked swine influenza virus has been demonstrated in lungworm larvae from earthworms dug on Midwestern farms. 2. Swine influenza virus infections were provoked in 2 of 3 swine obtained from an Iowa farm during an interepizootic period. 3. The evidence presented has been interpreted as indicating that the swine lungworm is the reservoir and intermediate host for swine influen...

2016
Susan M. Withenshaw Godefroy Devevey Amy B. Pedersen Andy Fenton

Many parasites infect multiple sympatric host species, and there is a general assumption that parasite transmission between co-occurring host species is commonplace. Such between-species transmission could be key to parasite persistence within a disease reservoir and is consequently an emerging focus for disease control. However, while a growing body of theory indicates the potential importance...

2016
Diego Morales Marlio Paredes Anuj Mubayi Simon A. Levin

Leishmaniasis is a neglected tropical disease, transmitted by species of phlebotomus vectors of the genus Lutzomyia and is responsible for over 1500 yearly cases in Ecuador. Vector collection studies in Ecuador suggest an association between the ecological diversity of an ecosystem, presence of reservoir host and the abundance of sand y species. Data collected in a Coastal community suggest tha...

2015
Lillian Seu Olaf Kutsch

The ability of HIV-1 to establish an extremely stable latent viral reservoir in the CD4 + memory T cell population prevents viral eradication with the currently available antiretroviral drugs. A viral reservoir consisting of only 10 5 latently HIV-1 infected T cells could take more than 60 years to dissipate, making natural eradication during the lifetime of a patient impossible [1]. To achieve...

آرندیان, محمد حسین, اخوان, امیر احمد, جعفری, رضا, دهقانی دهنوی, علیرضا, زهرائی رمضانی, علیرضا, سلیمانی, حسن, مروی مقدم, نرگس, یعقوبی ارشادی, محمد رضا,

Introduction: Zoonotic Cutaneous leishmaniasis(ZCL) is one of the most important parasitic diseases in Iran and common in rural districts of half of the 30 provinces of the country. In recent years, ZCL has become a serious and increasing public health problem in Yazd province. Following the epidemic of CL in Khatam county of Yazd province, this study was carried out to determine the animal re...

2015
Cesar Henriquez-Camacho Palmira Ventosilla Michael F. Minnick Joaquim Ruiz Ciro Maguiña

Bartonella bacilliformis is the etiologic agent of Carrión's disease or Oroya fever. B. bacilliformis infection represents an interesting model of human host specificity. The notable differences in clinical presentations of Carrión's disease suggest complex adaptations by the bacterium to the human host, with the overall objectives of persistence, maintenance of a reservoir state for vectorial ...

Journal: :journal of agricultural science and technology 2010
h. sadeghi

the relationship between female oviposition preference and offspring performance is a key area of study on the evolution of host specificity. this study investigates host prefer-ence of the polyphagous hover fly syrphus ribesii (diptera: syrphidae) and compares it with some components of its offspring`s performance. females and offspring were tested on six naturally used aphid hosts (blackberry...

2004
D. M. Monack D. M. Bouley

Introduction When a pathogenic microorganism first infects its host there is usually a dramatic engagement with the innate and adaptive immune systems that may result in disease symptoms. If the microbe and the host survive this initial interaction, the adaptive host immune system usually clears the invading offender. However, some pathogenic bacteria are capable of maintaining infections in ma...

2017
Jarlath E. Nally Andre A. Grassmann Sébastien Planchon Kjell Sergeant Jenny Renaut Janakiram Seshu Alan J. McBride Melissa J. Caimano

Pathogenic species of Leptospira cause leptospirosis, a bacterial zoonotic disease with a global distribution affecting over one million people annually. Reservoir hosts of leptospirosis, including rodents, dogs, and cattle, exhibit little to no signs of disease but shed large numbers of organisms in their urine. Transmission occurs when mucosal surfaces or abraded skin come into contact with i...

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

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

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