نتایج جستجو برای: gene tb

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

Journal: : 2023

The objective: to study the genetic determinants of rifampicin resistance Mycobacterium tuberculosis by sequencing RRDR rpoB gene. Subjects and Methods. included 651 M. isolates that were tested for drug suceptibility (DST) genotypic methods (gDST) TB-TEST (BIOCHIP-IMB, Russia), Amplitube-MDR-RV (NPK Sintol, Russia) phenotypic (phDST): absolute concentration method, BACTEC MGIT 960 system, Sens...

Journal: :Zoonoses 2022

The human immunodeficiency virus (HIV) pandemic has caused a resurgence of tuberculosis (TB), thus increasing morbidity and mortality. Moreover, HIV-TB coinfection leads to difficulties in diagnosis. Sputum smear microscopy, mycobacterial culture GeneXpert MTB/RIF assays are generally endorsed detect Mycobacterium ( M. ) coinfection. However, these methods cannot diagnose TB an accurate timely ...

Background & objective:  Tuberculosis (TB) remains a major cause of death around the world. Bacillus Calmette Guérin (BCG) is the only vaccine used in TB prevention that has a protective effect in children, but its effectiveness declines in adults. Design and development of new vaccines is the most effective way against TB. The aim of this study was to design and construc...

2013
Fang Wu Wanjiang Zhang Le Zhang Jiangdong Wu Chunzhu Li Xianjie Meng Xi Wang Peng He Jie Zhang

BACKGROUND To explore the potential role of natural-resistance-associated macrophage protein 1 (NRAMP1) gene, vitamin D receptor (VDR) gene, (human leukocyte antigen, (HLA-DRB1) HLA)-DRB1 gene, and HLA-DQB1 gene polymorphisms in susceptibility to tuberculosis (TB) in the Chinese Kazakh population. METHODS A case-control study was performed on the Chinese Kazak population. Genetic polymorphism...

Journal: :EMBO molecular medicine 2016
Jeroen Maertzdorf Gayle McEwen January Weiner Song Tian Eric Lader Ulrich Schriek Harriet Mayanja-Kizza Martin Ota John Kenneth Stefan He Kaufmann

There is an urgent need for new tools to combat the ongoing tuberculosis (TB) pandemic. Gene expression profiles based on blood signatures have proved useful in identifying genes that enable classification of TB patients, but have thus far been complex. Using real-time PCR analysis, we evaluated the expression profiles from a large panel of genes in TB patients and healthy individuals in an Ind...

2014
Kinuyo Chikamatsu Akio Aono Hiroyuki Yamada Tetsuhiro Sugamoto Tomoko Kato Yuko Kazumi Kiyoko Tamai Hideji Yanagisawa Satoshi Mitarai

BACKGROUND The rapid identification of acid-fast bacilli recovered from patient specimens as Mycobacterium tuberculosis complex (MTC) is critically important for accurate diagnosis and treatment. A thin-layer immunochromatographic (TLC) assay using anti-MPB64 or anti-MPT64 monoclonal antibodies was developed to discriminate between MTC and non-tuberculosis mycobacteria (NTM). Capilia TB-Neo, wh...

Journal: :Antibiotics 2023

The emergence of pre-extensively drug-resistant tuberculosis (pre-XDR-TB) is a threat to TB control programs in developing countries such as Zambia. Studies Zambia have applied molecular techniques understand drug-resistance-associated mutations, circulating lineages and transmission patterns multi-drug-resistant (MDR) Mycobacterium tuberculosis. However, none has reported genotypes mutations a...

2014
Adane Mihret Andre G Loxton Yonas Bekele Stefan HE Kaufmann Martin Kidd Mariëlle C Haks Tom HM Ottenhoff Abraham Aseffa Rawleigh Howe Gerhard Walzl

BACKGROUND Genetic factors are involved in susceptibility or protection to tuberculosis (TB). Apart from gene polymorphisms and mutations, changes in levels of gene expression, induced by non-genetic factors, may also determine whether individuals progress to active TB. METHODS We analysed the expression level of 45 genes in a total of 47 individuals (23 healthy household contacts and 24 new ...

2017
Ethan G. Thompson Ying Du Stephanus T. Malherbe Smitha Shankar Jackie Braun Joe Valvo Katharina Ronacher Gerard Tromp David L. Tabb David Alland Shubhada Shenai Laura E. Via James Warwick Alan Aderem Thomas J. Scriba Jill Winter Gerhard Walzl Daniel E. Zak Nelita Du Plessis Andre G. Loxton Novel N. Chegou Myungsun Lee

Biomarkers for tuberculosis treatment outcome will assist in guiding individualized treatment and evaluation of new therapies. To identify candidate biomarkers, RNA sequencing of whole blood from a well-characterized TB treatment cohort was performed. Application of a validated transcriptional correlate of risk for TB revealed symmetry in host gene expression during progression from latent TB i...

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

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

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