نتایج جستجو برای: electrophoresis gel pulsed

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

Journal: :Journal of clinical microbiology 2001
J A Benson P Ferrieri

We developed a rapid pulsed-field gel electrophoresis (PFGE) method that required 3 days to complete, an improvement over the standard method that required as many as 8 days. The accuracy and reproducibility of the rapid method were verified by analysis of DNA band sizes of our control group B streptococcus isolate. The rapid method was superior to the standard method, providing more precise mo...

Journal: :Scientific reports 2016
Bo Zhao Peihong Cheng Haiyang Pan Shuai Zhang Baigeng Wang Guanghou Wang Faxian Xiu Fengqi Song

Recently, it has been theoretically predicted that Cd3As2 is a three dimensional Dirac material, a new topological phase discovered after topological insulators, which exhibits a linear energy dispersion in the bulk with massless Dirac fermions. Here, we report on the low-temperature magnetoresistance measurements on a ~50 nm-thick Cd3As2 film. The weak antilocalization under perpendicular magn...

Journal: :Physical review letters 2005
Yuanbo Zhang Joshua P Small Michael E S Amori Philip Kim

Electric field effect devices based on mesoscopic graphite are fabricated for galvanomagnetic measurements. Strong modulation of magnetoresistance and Hall resistance as a function of the gate voltage is observed as the sample thickness approaches the screening length. Electric field dependent Landau level formation is detected from Shubnikov-de Haas oscillations. The effective mass of electron...

Journal: :Physical review letters 2017
D S Miserev A Srinivasan O A Tkachenko V A Tkachenko I Farrer D A Ritchie A R Hamilton O P Sushkov

In-plane hole g factors measured in quantum point contacts based on p-type heterostructures strongly depend on the orientation of the magnetic field with respect to the electric current. This effect, first reported a decade ago and confirmed in a number of publications, has remained an open problem. In this work, we present systematic experimental studies to disentangle different mechanisms con...

Journal: :Physical review letters 2013
Maximilian Genske Wolfgang Alt Andreas Steffen Albert H Werner Reinhard F Werner Dieter Meschede Andrea Alberti

We report on the experimental realization of electric quantum walks, which mimic the effect of an electric field on a charged particle in a lattice. Starting from a textbook implementation of discrete-time quantum walks, we introduce an extra operation in each step to implement the effect of the field. The recorded dynamics of such a quantum particle exhibits features closely related to Bloch o...

Journal: :Journal of the Optical Society of America. A, Optics, image science, and vision 2006
Kurt E Oughstun Richard A Albanese

The classical Lorentz model of dielectric dispersion is based on the microscopic Lorentz force relation and Newton's second law of motion for an ensemble of harmonically bound electrons. The magnetic field contribution in the Lorentz force relation is neglected because it is typically small in comparison with the electric field contribution. Inclusion of this term leads to a microscopic polariz...

Journal: :Journal of clinical microbiology 2001
P Mölling A Bäckman P Olcén H Fredlund

An outbreak of serogroup W-135 meningococcal disease was reported among pilgrims returning from the annual hajj (pilgrimage to Mecca) in mid-March 2000. Molecular characterization was used to investigate the similarity of the hajj-associated W-135 strains with those isolated in Sweden during a 23-year period (1978 to 2000). The same hajj-associated genosubtype, genosubtype P1.5,2,36b, has been ...

Journal: :The Journal of infectious diseases 2003
Amita Gupta John Fontana Colleen Crowe Barbara Bolstorff Alison Stout Susan Van Duyne Mike P Hoekstra Jean M Whichard Timothy J Barrett Frederick J Angulo

We describe a field investigation in New England that identified the emergence and epidemiology of new strains of multidrug-resistant Salmonella, Newport-MDRAmpC, and summarize the Center for Disease Control and Prevention's surveillance data for these infections. In Massachusetts, the prevalence of Newport-MDRAmpC among Salmonella serotype Newport isolates obtained from humans increased from 0...

2006
Kathryn Como-Sabetti Kathleen Harriman Billie Juni Amy Westbrook Elizabeth Cebelinski David Boxrud Ruth Lynfield

We investigated a cluster of community-associated methicillin-resistant Staphylococcus aureus infections among persons at a wilderness canoe camp. Isolates from the investigation had identical profiles for susceptibility, pulsed-field gel electrophoresis, and toxins. Participants in activities that involve skin injury, person-to-person contact, and inadequate hygiene are at increased risk for m...

Journal: :Electrophoresis 2005
Chris Glasbey Leila Vali John Gustafsson

A statistical model is proposed which relates density profiles in 1-D electrophoresis gels, such as those produced by pulsed-field gel electrophoresis (PFGE), to databases of profiles of known genotypes. The warp in each gel lane is described by a trend that is linear in its parameters plus a first-order autoregressive process, and density differences are modelled by a mixture of two normal dis...

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

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

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