نتایج جستجو برای: haemophilus influenzae

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

Journal: :Journal of clinical microbiology 2006
Daniel M Musher Aran Cunningham Nichol Adriana M Rueda

Haemophilus influenzae rarely causes spontaneous bacterial peritonitis. We describe a typical case of spontaneous bacterial peritonitis in which the causative organism was identified as nontypeable H. influenzae, biotype III. Infection progressed despite the presence of adequate serum bactericidal antibody, probably due to the absence of complement in ascites fluid.

Journal: :Infection and immunity 2005
Bruce A Green Elizabeth Baranyi Thomas J Reilly Arnold L Smith Gary W Zlotnick

The Haemophilus influenzae P4 lipoprotein (hel) is a potential component of a nontypeable H. influenzae otitis media vaccine. Since P4 is known to be an enzyme, nonenzymatically active forms of recombinant P4 are required. After site-directed mutagenesis of the hel gene, three of the mutated proteins were shown to be vaccine candidates.

Journal: :South African medical journal = Suid-Afrikaanse tydskrif vir geneeskunde 1980
F J Maritz J Joubert

Haemophilus influenzae is an uncommon but important cause of lobar pneumonia, specifically in patients whose host defence mechanisms are impaired by unrecognized underlying diseases. A case of H. influenzae lobar pneumonia in a patient with underlying multiple myeloma is presented. The clinical features, treatment and procedures which aid in making the diagnosis are briefly discussed.

Journal: :Antimicrobial agents and chemotherapy 1986
A A Medeiros R Levesque G A Jacoby

The most common cause of ampicillin resistance in Haemophilus influenzae type b is production of TEM-1 beta-lactamase; however, a novel enzyme with a similar substrate profile but a quite different isoelectric point has also been described. This beta-lactamase, designated ROB-1, has not been found previously in any other organism. In a survey of 46 ampicillin-resistant H. influenzae type b isol...

Journal: :Journal of clinical microbiology 2009
Takashi Saito Hiromi Matsunaga Yumi Matsumura Hajime Segawa Shunji Takakura Miki Nagao Yoshitsugu Iinuma Yoshiki Miyachi Satoshi Ichiyama

Necrotizing fasciitis caused by Haemophilus influenzae type b is a rare infection of the skin and soft tissues. The only previously reported case involved a healthy infant. We report herein the case of an 81-year-old Japanese woman with diabetes mellitus who developed necrotizing fasciitis caused by H. influenzae type b.

Journal: :Journal of microbiological methods 2013
Kim M Hare Robyn L Marsh Michael J Binks Keith Grimwood Susan J Pizzutto Amanda J Leach Anne B Chang Heidi C Smith-Vaughan

Correlation was observed between quantitative PCR and semi-quantitative culture for definition of Haemophilus influenzae infection in bronchoalveolar lavage specimens from 81 children with bronchiectasis. However, qPCR data correlated less well with airway neutrophilia, and supports continued use of culture as the gold standard for defining H. influenzae lower airway infection.

2017
Ulrike Kappler Rabeb Dhouib Remya Purushothaman Nair Alastair G. McEwan

Nontypeable Haemophilus influenzae is a persistent human respiratory pathogen known to be involved in a range of acute and chronic respiratory diseases. Here, we report the genome sequences of three H. influenzae strains isolated from sputum, otitis media, and blood. Comparative analyses revealed significant differences in the gene contents including the presence of genes mediating antibiotic r...

Journal: :Journal of clinical microbiology 1994
M Gratten D Battistutta P Torzillo J Dixon K Manning

The results of this study show that goat blood as a culture medium supplement is as supportive as horse blood for the isolation and identification of Haemophilus influenzae and Streptococcus pneumoniae from clinical material. Care is required in the preparation of goat blood chocolate agar to ensure that a thermolabile growth inhibitor of NAD-dependent Haemophilus species is eliminated.

Journal: :Applied microbiology 1973
S M Larson P Charache M Chen H N Wagner

Addition of heme (X factor) and pyridine nucleotide (V factor) to the medium permits rapid growth of Haemophilus influenzae, with evolution of easily detectable amounts of (14)CO(2). Radiometric media containing X and V factor should be used when evaluating clinical specimens which might contain Haemophilus species.

Journal: :Journal of clinical microbiology 1984
F O Sottnek W L Albritton

Six Haemophilus influenzae strains could not be classified as biotypes I through VII. The strains were indole, urease, and ornithine decarboxylase negative. We propose that they be classified as biotype VIII, a previously unreported biotype.

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

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

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