نتایج جستجو برای: chromogenic

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

2013
Andrea Caridi

The aim of this research is to improve an existing low-cost and simple but consistent culturing technique for measuring the adsorption of grape skin pigments on yeasts, comprising: (i) growing yeasts in Petri dishes on chromogenic grape-skin-based medium, (ii) photographing the yeast biomass, (iii) measuring its red, green, and blue colour components, and (iv) performing the statistical analysi...

2014
J M Sommer N Moore B McGuffie-Valentine S Bardan Y Buyue G D Kamphaus B A Konkle G F Pierce

Discrepancies exist for some of the modified coagulation factors when assayed with different one-stage clotting and chromogenic substrate assay reagents. The aim of this study was to evaluate the performance of a recombinant factor VIII Fc fusion protein (rFVIIIFc), currently in clinical development for the treatment of severe haemophilia A, in a variety of one-stage clotting and chromogenic su...

2013
Su-yun Jiang Jian Jiao Ting-ting Zhang Yong-ping Xu

AIM To compare the analytical methods used to study the pharmacokinetics of recombinant hirudin in the plasma of rats that had been injected with (125)I-recombinant hirudin. METHODS 2.0 mg/kg (125)I-recombinant hirudin were injected intravenously into rats. The recombinant hirudins in the plasma was analyzed by chromogenic substrate assay, enzyme-linked immunosorbent assay (ELISA), total radi...

Journal: :Letters in applied microbiology 2005
A El Marrakchi N Boum'handi A Hamama

AIMS This study investigated the performance of a new chromogenic plating medium for the detection of Listeria monocytogenes from naturally contaminated samples obtained from marine environments in Morocco in comparison with the conventional plating media PALCAM and Oxford. METHODS A total of 479 marine samples (sea water, sediment and mussels) were collected from 16 littoral sites in the reg...

2015
Reham Raafat Reham Dwedar Eman El-Seidi Reham Ali Dwedar

Urinary tract infection, Chromogenic media Background: Urine cultures constitute the majority of the workload for a microbiology laboratory with only 20%-30% of urine sample resulting in significant growth. Chromogenic media (CM) are available for urine specimens to enable rapid identification of common pathogens and also has been reported to increase mixed culture detection, reducing unnecessa...

Journal: :European journal of haematology 2015
Joachim J Potgieter Michael Damgaard Andreas Hillarp

Haemophilia A severity is closely correlated to the factor VIII (FVIII) activity, which can be measured in different ways. The original one-stage clotting assay is still the most widely used. The two-stage coagulation assay eliminated many of the drawbacks of the one-stage assay and was further developed into the chromogenic assay, a two-staged test with purified coagulation factors in the firs...

Journal: :Journal of clinical microbiology 2014
Nuntra Suwantarat Ava Roberts Jamie Prestridge Renee Seeley Sharon Speser Christopher Harmon Chi Zhang Susan Henciak Paul D Stamper Tracy Ross Karen C Carroll

Five chromogenic agars, evaluated using 400 stool specimens, were found to be superior in sensitivity (range, 89.9 to 93.9%) to bile esculin azide agar with vancomycin (BEAV) agar (84.8%) for detecting vancomycin-resistant enterococci (VRE), and the results were available 24 to 48 h sooner. The time to detection, need for supplemental testing, color distinction, and breakthrough of non-VRE orga...

Journal: :Journal of the American Chemical Society 2004
Dmitry Aldakov Pavel Anzenbacher

A new approach to sensing of aqueous phosphate-related anions based on chromogenic conductive polymers is demonstrated. This method utilizes synergy between low-level p-doping in a polythiophene polymer and hydrogen bonding to increase anion-sensor affinity. These chromogenic conductive polymers show anion-specific changes both in color and in conductivity upon increasing concentration of anion...

Journal: :Journal of clinical microbiology 2010
Te-Din Huang Pierre Bogaerts Catherine Berhin Amelie Guisset Youri Glupczynski

The aim of this study was to evaluate the performance of Brilliance ESBL agar (OX; Oxoid, Basingstoke, United Kingdom), a novel chromogenic agar for the selective isolation and the presumptive identification of extended-spectrum-beta-lactamase (ESBL)-producing Enterobacteriaceae. A panel of 200 clinical Gram-negative Enterobacteriaceae and nonfermenting isolates with defined resistance mechanis...

Journal: :The Journal of antimicrobial chemotherapy 2011
John D Perry Sakeenah Hussain Naqvi Irfan Ali Mirza Shehla Ambreen Alizai Aamir Hussain Sandrine Ghirardi Sylvain Orenga Kathryn Wilkinson Neil Woodford Jiancheng Zhang David M Livermore Shahid Ahmad Abbasi Muhammad W Raza

OBJECTIVES To determine the prevalence and antimicrobial susceptibility of carbapenemase-producing Enterobacteriaceae among hospitalized patients and outpatients attending two military hospitals in Rawalpindi, Pakistan, and to compare the performance of two chromogenic culture media for the isolation of these organisms. METHODS Stool samples from 200 distinct patients were cultured on MacConk...

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

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

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