نتایج جستجو برای: diphtheria toxin

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

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1975
A M Pappenheimer V Randall

It was recently reported by Iglewski and Rittenberg in THESE PROCEEDINGS (71, 2707-2710, 1974) that low doses of purified diphtheria toxin inhibit protein synthesis in mouse Ehrlich-Lettre ascites carcinoma cells cultured in vitro. These observations could not be confirmed by us nor could the authors' further claim that toxin can cause regression of well-established ascites tumors in preimmuniz...

Journal: :The Journal of Experimental Medicine 1966
Peter F. Bonventre John G. Imhoff

The effect of crystalline diphtheria toxin on protein synthesis in vivo was evaluated in guinea pigs and mice. By two independent methods of analysis (microdensitometry of tissue radioautograms and radioactivity of tissue proteins), it was established that inhibition of protein synthesis was not a widespread metabolic effect of diphtheria toxin. In the sensitive guinea pig, only the heart and t...

Journal: :The Journal of biological chemistry 1991
E Mekada H Senoh R Iwamoto Y Okada T Uchida

Diphtheria toxin receptor has been solubilized from Vero cell membranes with octyl beta-D-glucoside. CRM197, the product of a mutated diphtheria toxin gene, was used for the identification of the receptor. The binding activity of the solubilized receptor was assayed by precipitating the receptor with acetone in the presence of phospholipids and carrier proteins. The solubilized receptor was pur...

2005
Robert C George

© 2005 The Medicine Publishing Company Ltd 31 MEDICINE 33:7 Diphtheria is caused by superficial infection of the respiratory tract or skin with toxin-producing strains of the bacterium Corynebacterium diphtheriae. The organisms do not actively invade deep tissue or the blood, but multiply locally, producing diphtheria toxin. This results in necrosis of the mucosal cells and production of a thic...

2016
Leonie Schnell Ann-Katrin Mittler Andrea Mattarei Domenico Azarnia Tehran Cesare Montecucco Holger Barth

Diphtheria toxin is a single-chain protein toxin that invades human cells by receptor-mediated endocytosis. In acidic endosomes, its translocation domain inserts into endosomal membranes and facilitates the transport of the catalytic domain (DTA) from endosomal lumen into the host cell cytosol. Here, DTA ADP-ribosylates elongation factor 2 inhibits protein synthesis and leads to cell death. The...

Journal: :Journal of clinical microbiology 1987
P B Nielsen C Koch H Friis I Heron J Prag J Schmidt

An enzyme-linked immunosorbent assay for determining the toxigenicity of Corynebacterium diphtheriae is presented. The assay uses hyperimmune horse diphtheria antitoxin as a capture antibody and mouse monoclonal diphtheria antitoxin as a detecting antibody. Growth of bacteria and capture of diphtheria toxin by antitoxin are carried out in one step. Toxin produced by as little as 100 toxin-produ...

Journal: :Infection and immunity 1992
J T Barbieri D Armellini J Molkentin R Rappuoli

A genetically engineered gene fusion was constructed which encoded a nontoxic derivative of the A fragment of diphtheria toxin joined to the C180 peptide of the S1 subunit of pertussis toxin. The product of this gene fusion, termed the DTA-C180 protein, was purified from the periplasm of Escherichia coli to approximately 80% purity. The DTA-C180 protein possessed an apparent molecular weight of...

2013
Jian-Kan Guo Hongmei Shi Farrukh Koraishy Arnaud Marlier Zhaowei Ding Alan Shan Lloyd G Cantley

Biomedical research often requires primary cultures of specific cell types, which are challenging to obtain at high purity in a reproducible manner. Here we engineered the murine Rosa26 locus by introducing the diphtheria toxin receptor flanked by loxP sites. The resultant strain was nicknamed the Terminator mouse. This approach results in diphtheria toxin-receptor expression in all non-Cre exp...

2015
Heidi Smith Peter Cheslock Mark Leney Bruce Barton Deborah Molrine

116. Potency of a Human Monoclonal Antibody to Diphtheria Toxin Relative to Equine Diphtheria Anti-toxin in an Animal Model Heidi Smith, MD, PhD; Peter Cheslock, PhD; Mark Leney, PhD; Bruce Barton, PhD; Deborah Molrine, MD; MassBiologics of the University of Massachusetts Medical School, Boston, Massachusetts; Quantitative Health Sciences, University of Massachusetts Medical School, Worcester, ...

Journal: :Clinical and vaccine immunology : CVI 2008
Sabine Reder Marion Riffelmann Christian Becker Carl Heinz Wirsing von König

Bead-based assay systems offer the possibility of measuring several specific antibodies in one sample simultaneously. This study evaluated a vaccine panel of a multianalyte system that measures antibodies to tetanus toxin, diphtheria toxin, and pertussis toxin (PT) from Bordetella pertussis. The antibody concentrations of human immunoglobulin G (IgG) to PT, tetanus toxin, and diphtheria toxin w...

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

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

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