نتایج جستجو برای: rdna sequencing

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

Journal: :American journal of clinical pathology 2010
Sin Hang Lee Veronica S Vigliotti Jessica S Vigliotti William Jones Suri Pappu

The DNA of Borrelia burgdorferi spirochetes extracted by ammonium hydroxide was used as the template for nested polymerase chain reaction (PCR) amplification of the species-specific 16S ribosomal DNA (rDNA). The primers were those well known to be specific for signature sequence amplification of the B burgdorferi sensu lato 16S ribosomal RNA gene. The positive 293-base-pair nested PCR amplicon ...

Journal: :Infection, genetics and evolution : journal of molecular epidemiology and evolutionary genetics in infectious diseases 2011
Heather Maughan Geraldine Van der Auwera

Bacillus is a diverse bacterial genus characterized by cells growing aerobically and forming dormant endospores. Although Bacillus species were some of the first bacteria ever characterized, their relationships to one another remain enigmatic. The recent deluge of environmental sequencing projects has further complicated our view of Bacillus taxonomy and diversity. In this review we discuss the...

2014
Patricio Jeraldo Krishna Kalari Xianfeng Chen Jaysheel Bhavsar Ashutosh Mangalam Bryan White Heidi Nelson Jean-Pierre Kocher Nicholas Chia

MOTIVATION 16S rDNA hypervariable tag sequencing has become the de facto method for accessing microbial diversity. Illumina paired-end sequencing, which produces two separate reads for each DNA fragment, has become the platform of choice for this application. However, when the two reads do not overlap, existing computational pipelines analyze data from read separately and underutilize the infor...

Journal: :Emerging Infectious Diseases 2001
R. Mackelprang M. D. Dearing S. St Jeor

provides direct evidence that this arthropod is a competent vector (4). We report the first identification and characterization of an HGE-like agent in a blacklegged tick collected in a tick-endemic area of Canada (6). Sixty male and 60 female I. scapularis were collected from five white-tailed deer shot on Long Point Peninsula, Ontario, during November 1999. Live ticks were cut longitudinally ...

Journal: :Clinical molecular pathology 1996
D W Williams M J Wilson M A Lewis A J Potts

Aim-To identify Candida species in formalin fixed, paraffin wax embedded tissue by sequencing candidal rDNA.Methods-Target rDNA sequences were amplified by polymerase chain reaction (PCR) from fresh isolates of Candida and from 18 preserved oral mucosal tissue samples (16 cases of chronic hyperplastic candidiasis and two fibroepithelial polyps), shown histologically to contain Candida. Identifi...

H. Sharifiyazdi M. Akhlaghi, S. M. Modarres Mousavi Behbahani

Samples from the kidney of 100 diseased fish with signs of haemorrhagic septicemia and 50 samples from outlet water of fish farms were taken aseptically and cultured. In the laboratory, 75 colonies of gram-negative bacteria were biochemically diagnosed as motile aeromonads in our Bacteriology Laboratory Unit using API 20E rapid identification system. The genotype identification using specific p...

2010
Lasse Sinkkonen Tabea Hugenschmidt Witold Filipowicz Petr Svoboda

BACKGROUND RNA silencing is a common term for pathways utilizing small RNAs as sequence-specific guides to repress gene expression. Components of the RNA silencing machinery are involved in different aspects of chromatin function in numerous organisms. However, association of RNA silencing with chromatin in mammalian cells remains unclear. METHODOLOGY/PRINCIPAL FINDINGS Immunostaining of mito...

Journal: :Acta dermato-venereologica 2006
Mette Walberg Cato Mørk Per Sandven Anne Tomine Jorde Magnar Bjørås Peter Gaustad

Diagnostic approaches to onychomycosis have traditionally been based on a combination of culture and microscopy. In the present study clinical specimens from 346 patients with suspected onychomycosis were analysed by 18S polymerase chain reaction (detection) followed by sequencing and subsequent database search (identification) in parallel with routine culture on agar (detection and identificat...

Journal: :iranian journal of parasitology 0
s koosha b kazemi f bonyadi

background : strongyloides stercoralis is a prevalent parasite in some rural areas in the north of iran. we decided to investigate whether the 18s ribosomal dna sequence of the parasite in iran is similar to the findings of the other re­searchers. methods :  we collected 3514 stool samples from gilan and mazandaran, northern iran, during the year 2005-2006, from which 96 were found infected wit...

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

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

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