نتایج جستجو برای: zoonotic diseases

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

2014
Ramesh C. Dhiman

The diseases originating from animals or associated with man and animals are remerging and have resulted in considerable morbidity and mortality. The present review highlights the re-emergence of emerging mainly zoonotic diseases like chikungunya, scrub typhus, and extension of spatial distribution of cutaneous leishmaniasis from western Rajasthan to Himachal Pradesh, Kerala, and Haryana states...

2007
Nico J. Schoemaker

Nearly two thirds of human diseases can be transmitted to animals. As veterinarians, however, we tend to use the term zoonosis when infections are transmitted from animals to humans. An estimated 75% of emerging infectious diseases are zoonotic, mainly of viral origin, and likely to be vector-borne. Among the major causes of these emerging diseases are alterations in human behavior and modifica...

2005
Nathan D. Wolfe Peter Daszak A. Marm Kilpatrick Donald S. Burke

the emergence of new zoonotic agents requires knowledge of pathogen biodiversity in wildlife, human-wildlife interactions, anthropogenic pressures on wildlife populations, and changes in society and human behavior. We discuss an interdisciplinary approach combining virology, wildlife biology, disease ecology, and anthropology that enables better understanding of how deforestation and associated...

2016
Reina Sikkema Marion Koopmans

INTRODUCTION The increase in emerging human infectious diseases that have a zoonotic origin and the increasing resistance of microorganisms to antimicrobial drugs have shown the need for collaborations between the human, animal and environmental health sectors. The One Health concept increasingly receives recognition from policy makers and researchers all over the world. This overview compiled ...

پایان نامه :دانشگاه آزاد اسلامی - دانشگاه آزاد اسلامی واحد علوم دارویی - پژوهشکده علوم 1392

purpose a metabolic abnormality such as obesity is a major obstacle in the maintenance of the human health system and causes various chronic diseases including type 2 diabetes, hypertension, cardiovascular diseases, as well as various cancers. this study was designed to summarize the recent scientific knowledge regarding the anti-obesity role of curcumin (diferuloylmethane), which is isolated f...

2006
Nina Marano Paul Arguin Marguerite Pappaioanou Bruno Chomel Esther Schelling Vincent Martin Jay C. Butler C. Ben Beard Lonnie King

movie of the 2006 summer season. It featured reptiles smuggled onto an airplane as an unusual bioweapon of mass destruction. In a much less dramatic fashion, this absurd scenario plays out every day, when tons of live animals and unprocessed animal products are shipped internationally around the globe, providing many opportunities for rapidly translocating zoonotic pathogens. Episodes of emergi...

2013
James W. Wynne Lin-Fa Wang

Emerging infectious diseases pose a significant threat to human and animal welfare. A high proportion of emerging and reemerging infectious diseases are zoonoses derived from wildlife [1]. Bats harbour more zoonotic viruses per species than rodents and are now recognised as a significant source of zoonotic agents [2]. Henipaviruses, coronaviruses, filoviruses, and the rabies-causing lyssaviruse...

Journal: :Critical reviews in microbiology 2007
Michael Greger

Emerging infectious diseases, most of which are considered zoonotic in origin, continue to exact a significant toll on society. The origins of major human infectious diseases are reviewed and the factors underlying disease emergence explored. Anthropogenic changes, largely in land use and agriculture, are implicated in the apparent increased frequency of emergence and re-emergence of zoonoses i...

2017
K Goginashvili Gaga Osiashvili Ryan Arner Lile Malania

Introduction Zoonotic diseases are an important cause of human morbidity and mortality; around 75% of recently emerging human infectious diseases are zoonoses. Herein we report the first seroprevalence study to include a range of emerging or re-emerging zoonotic pathogens of economic concern (including: Bacillus anthracis, Coxiella burnetii, Francisella spp., Brucella spp., and Crimean-Congo he...

2015
Emmanuel E. Comoy Jacqueline Mikol Sophie Luccantoni-Freire Evelyne Correia Nathalie Lescoutra-Etchegaray Valérie Durand Capucine Dehen Olivier Andreoletti Cristina Casalone Juergen A. Richt Justin J. Greenlee Thierry Baron Sylvie L. Benestad Paul Brown Jean-Philippe Deslys

Classical bovine spongiform encephalopathy (c-BSE) is the only animal prion disease reputed to be zoonotic, causing variant Creutzfeldt-Jakob disease (vCJD) in humans and having guided protective measures for animal and human health against animal prion diseases. Recently, partial transmissions to humanized mice showed that the zoonotic potential of scrapie might be similar to c-BSE. We here re...

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

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

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