نتایج جستجو برای: b suis

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

Journal: :Journal of bacteriology 2004
Seung-Hun Baek Gireesh Rajashekara Gary A Splitter James P Shapleigh

Brucella is the causative agent of the zoonotic disease brucellosis, which is endemic in many parts of the world. Genome sequencing of B. suis and B. melitensis revealed that both are complete denitrifiers. To learn more about the role of denitrification in these animal pathogens, a study of the role of denitrification in the closely related B. neotomae was undertaken. In contrast to B. suis an...

Journal: :Bioorganic & medicinal chemistry 2007
Marie-Rose Abdo Pascale Joseph Rose-Anne Boigegrain Jean-Pierre Liautard Jean-Louis Montero Stephan Köhler Jean-Yves Winum

Brucella spp. is the causative agent of brucellosis (Malta fever), which is the most widespread zoonosis worldwide. The pathogen is capable of establishing persistent infections in humans which are extremely difficult to eradicate even with antibiotic therapy. Moreover, Brucella is considered as a potential bioterrorism agent. Histidinol dehydrogenase (HDH, EC 1.1.1.23) has been shown to be ess...

Journal: :Journal of bacteriology 1968
L M Jones M Zanardi D Leong J B Wilson

The gram-negative organism causing abortion in dogs was examined in parallel with cultures representative of the Brucella species and with Bordetella bronchiseptica. The organism fits into the genus Brucella and most closely resembles B. suis on the basis of its growth characteristics. It is of rough colonial morphology and is agglutinated by antisera prepared against rough Brucella. In mouse t...

Journal: :Emerging Infectious Diseases 2008
Ho Dang Trung Nghia Ngo Thi Hoa Le Dieu Linh James Campbell To Song Diep Nguyen Van Vinh Chau Nguyen Thi Hoang Mai Tran Tinh Hien Brian Spratt Jeremy Farrar Constance Schultsz

Streptococcus suis infection is an emerging zoonosis in Southeast Asia. We report a fatal case of S. suis serotype 16 infection in a Vietnamese man in 2001.

2017
Paul Lemire Tristan Galbas Jacques Thibodeau Mariela Segura

Dendritic cells (DCs) and NK cells play a crucial role in the first phase of host defense against infections. Group B Streptococcus (GBS) and Streptococcus suis are encapsulated streptococci causing severe systemic inflammation, leading to septicemia and meningitis. Yet, the involvement of NK cells in the innate immune response to encapsulated bacterial infection is poorly characterized. Here, ...

2014
Yuan Dang Claude Lachance Yingchao Wang Carl A Gagnon Christian Savard Mariela Segura Daniel Grenier Marcelo Gottschalk

BACKGROUND Swine influenza is a highly contagious viral infection in pigs affecting the respiratory tract that can have significant economic impacts. Streptococcus suis serotype 2 is one of the most important post-weaning bacterial pathogens in swine causing different infections, including pneumonia. Both pathogens are important contributors to the porcine respiratory disease complex. Outbreaks...

2010
Nahuel Fittipaldi Daisuke Takamatsu María de la Cruz Domínguez-Punaro Marie-Pier Lecours Diane Montpetit Makoto Osaki Tsutomu Sekizaki Marcelo Gottschalk

Pili have been shown to contribute to the virulence of different Gram-positive pathogenic species. Among other critical steps of bacterial pathogenesis, these structures participate in adherence to host cells, colonization and systemic virulence. Recently, the presence of at least four discrete gene clusters encoding putative pili has been revealed in the major swine pathogen and emerging zoono...

2016
Yaya Pian Xueqin Li Yuling Zheng Xiaohong Wu Yuan Yuan Yongqiang Jiang

The Gram-positive bacterium Streptococcus suis serotype 2 (S. suis 2), an important zoonotic pathogen, induces strong systemic infections in humans; sepsis and meningitis are the most common clinical manifestations and are often accompanied by bacteremia. However, the mechanisms of S. suis 2 survival in human blood are not well understood. In our previous study, we identified muramidase-release...

2016
Ellen De Bruyne Richard Ducatelle Dennis Foss Margaret Sanchez Myrthe Joosten Guangzhi Zhang Annemieke Smet Frank Pasmans Freddy Haesebrouck Bram Flahou

Helicobacter (H.) suis causes gastric pathologies in both pigs and humans. Very little is known on the metabolism of this bacterium and its impact on the host. In this study, we have revealed the importance of the glutamate-generating metabolism, as shown by a complete depletion of glutamine (Gln) in the medium during H. suis culture. Besides Gln, H. suis can also convert glutathione (GSH) to g...

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

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

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