نتایج جستجو برای: آنزیم hrp

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

Journal: :Frontiers in Environmental Science 2023

The widespread use of carbon nanotubes (CNTs) has raised concerns about the human health and ecological effects CNTs released into environment. Bacteria play an important role in bioremediation waste treatment, their enzymes are mostly responsible for degradation contaminants. However, there still only a few reports bacterial CNTs, evidence showing involvement CNT with mechanisms never been rep...

Journal: :Neuroscience letters 1983
D F Turner C F Marfurt

The purpose of the present investigation was to determine if the horseradish peroxidase (HRP) technique could be used as a method for labeling sensory nerve fibers (specifically, tooth pulp afferents) for detailed ultrastructural analyses. HRP injected into the trigeminal ganglion of adult rats was taken up by ganglion cell bodies and transported anterogradely to their peripheral endings in the...

2001
A. Bhandari I. Cho

Sorption-desorption behavior of phenol and o-cresol was studied on two soils belonging to the Haynie series (very fine sandy loams) collected from field and forested sites. Experimental investigations focused on the effect of HRP addition on sorption and desorption of target chemicals when present in solution alone, and when present as a mixture. Addition of HRP resulted in a dramatic increase ...

Journal: :Cancer letters 2009
Zhengkai Liao Chenghu Huang Fuxiang Zhou Jie Xiong Jie Bao Hongyan Zhang Wenjie Sun Conghua Xie Yunfeng Zhou

Radioresistant cells have been shown to correlate with poor outcome after radiotherapy. Here, we found that human telomerase reverse transcriptase promoter (hTERTp) had lower activity in laryngeal squamous carcinomas cells than in radioresistant variant cells. Combining radiotherapy with plasmid phTERTp-HRP, in which expression of enzyme horseradish peroxidase (HRP) controlled by hTERTp, result...

Journal: :Pattern Recognition 1999
Seema Jaggi W. Clem Karl Stéphane Mallat Alan S. Willsky

This paper introduces a simple new approach to object recognition from silhouettes. This new approach utilizes features extracted using an adaptive approximation technique called high-resolution pursuit (HRP). In this work, a comparatively small set of HRP features and a simple recognition scheme are used. We demonstrate the strengths of the HRP-based recognition scheme by discriminating among ...

Journal: :International journal of radiation oncology, biology, physics 2011
Joanne B Weidhaas David G Kirsch

A decade ago, the American Board of Radiology established a research pathway for residency training designed for individuals to simultaneously train in diagnostic radiology or radiation oncology and in basic science, clinical, or transitional investigation. This new pathway was called the ABR Holman Research Pathway, named for B. Leonard Holman, M.D., who first proposed this initiative to foste...

2015
Di Zhang He Zhao Zhuangjun Fan Mingjie Li Penghui Du Chenming Liu Yuping Li Haitao Li Hongbin Cao Serge Muyldermans

A sensitive and noble amperometric horseradish peroxidase (HRP) biosensor is fabricated via the deposition of gold nanoparticles (AuNPs) onto a three-dimensional (3D) porous carbonized chicken eggshell membrane (CESM). Due to the synergistic effects of the unique porous carbon architecture and well-distributed AuNPs, the enzyme-modified electrode shows an excellent electrochemical redox behavio...

2013
J. Voogd

In order to identify cerebellar terminals in the cat inferior olive which contain gamma-aminobutyricacid (GABA), a technique was developed combining anterograde transport of wheatgerm agglutinine-conjugated horseradish peroxidase (WGA-HRP) with gold-immunocytochemistry. With this technique both the HRP reaction product and the immunogold labeling can be visualized in a single ultrathin section....

Journal: :Biochemistry 2006
Shinji Hashimoto Hideo Takeuchi

Ultraviolet resonance Raman (UVRR) spectroscopy has been used to characterize the structure and hydrogen bonding state of the distal histidine (His42) in horseradish peroxidase (HRP) complexed with carbon monoxide (HRP-CO). The HRP-CO - HRP UVRR difference spectrum in D(2)O solution at pD 7.0 shows two positive peaks at 1408 and 1388 cm(-)(1), which are ascribable to medium-to-weak and strong h...

Journal: :The Biochemical journal 1991
L Casella M Gullotti S Poli M Bonfà R P Ferrari A Marchesini

The interaction of a series of derivatives of tyrosine with horseradish peroxidase (HRP) and lactoperoxidase (LPO) was studied by using optical difference spectroscopy, c.d. and proton n.m.r. spectroscopy in order to reveal differences in the mode of binding of L-tyrosine and D-tyrosine, which are substrates of but react at different rates with the two peroxidases, to HRP and LPO. All the donor...

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

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

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