نتایج جستجو برای: enzyme technology

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

2012
Joana Gangoiti Marta Santos M. Auxiliadora Prieto Isabel de la Mata Juan L. Serra María J. Llama

Enzyme and Cell Technology Group, Department of Biochemistry and Molecular Biology, 8 Faculty of Science and Technology, University of the Basque Country (UPV/EHU), 9 P.O. Box 644, E-48080 Bilbao, Spain 10 Department of Environmental Biology, Biological Research Center, CSIC, C/. Ramiro de 11 Maeztu, 9, Madrid E-28040, Spain 12 Department of Biochemistry and Molecular Biology I, Faculty of Biol...

H. Goudarzi H. Keyvanfar M. Kamalzade M. Lotfi M.R. Seyfi Abad Shapouri S.A. Pourbakhsh,

  With advent and development of DNA recombinant technology and advantages of p. pastoris expression system, fusion (F) protein of PPRV expression, because of effective immunodominant role could be an appropriate candidate for production of recombinant vaccine against PPR disease. In this study, F gene of PPRV Nigeria 75/1 strain (1637 bp) was amplified using RT-PCR and purified. It was then cl...

Jiang Zhu Linbo Xia, Mingchen Ca shiren deng, Xiamin Zhu, Xin Wang,

An efficient and rapid affinity-based screening method for directly fishing out natural alpha-glucosidase inhibitors from Cyperus. rotundus extract by using immobilized enzyme technology combined with UHPLC-QTOF MS analysis was established. As a results, without time-consuming and laborious isolation workload and false positive interference, five natural alpha-glucosidase inhibitors were succes...

Journal: :iranian journal of public health 0
sh mirhendi p kordbacheh b kazemi s samiei m pezeshki mr khorramizadeh

deep-seated fungal infection present with non specific symptoms and involove a large number of different organisms. dna-based technology offers for eariler detection of fungal pathogens and then earlier initiation of antifungal therapy. in this study universal primers common to almost all fungi were used to amplification of internal transcribe spacer 1 and 2 region. subsequent restriction enzym...

Journal: :research in pharmaceutical sciences 0
sz samsam shariat n alinejad

ceruloplasmin (cp) is a human plasma protein with multiple physiological functions including ferroxidase and oxidase activities. deficiency or inhibition of the enzyme may lead to some abnormalities, including iron deposition in several tissues and causes various pathological conditions in the body. direct interaction of cadmium (cd), a widespread, highly toxic environmental pollutant, with hum...

Journal: :international journal of advanced biological and biomedical research 0
azar seydi m.sc of agricultural and natural resources research and education center, ilam, iran. elham faryabi department of agriculture, payame noor university of iran farzad kianersi ph.d. student of plant breeding bu-ali sina, hamedan, iran

the present study was laid out in order toevaluate the effect of salinity on some biochemical characterize of grapevine c.vyaghouti. the experiment was done at agricultural and natural resources research center, ilam, iran at 2014. the experiment was a completely block design (crd) with four replications. saline factor was nacl salinity in seven levels (zero, 50, 100, 150, 200 and 250 mm). grap...

Journal: :iranian journal of veterinary medicine 2013
saeed seifi

background: growth promoters are chemical and biologicalsubstances that are added to livestock food with the aimto improve the growth of chickens in fattening and the utilizationof food, and in this way achieve better production and financialresults. objectives:an experiment was conducted to evaluatethe effects of enzyme complex, probiotic, and their combinationon performance of broilers fed a ...

2015
Jun Huang Kun Li Huichao Liu Liyun Ding

The porous fluorescent SiO2 nanoparticles encapsulating photosensitizer Ru(bpy)3Cl2 were prepared by Stöber method and used as a carrier to immobilize glucose oxidase (GOD) to form the bifunctional porous SiO2 complex nanoparticles (BPSCNp) with the properties of enzymatic catalysis and optical oxygen sensing. The optimal immobilization conditions are as follows: hexadecyltrimethyl ammonium bro...

Journal: :Genome research 2001
M Ronaghi

DNA sequencing is one of the most important platforms for the study of biological systems today. Sequence determination is most commonly performed using dideoxy chain termination technology. Recently, pyrosequencing has emerged as a new sequencing methodology. This technique is a widely applicable, alternative technology for the detailed characterization of nucleic acids. Pyrosequencing has the...

Journal: :Drug discovery today 2014
Kristopher Josephson Alonso Ricardo Jack W Szostak

We describe a new discovery technology that uses mRNA-display to rapidly synthesize and screen macrocyclic peptide libraries to explore a valuable region of chemical space typified by natural products. This technology allows high-affinity peptidic macrocycles containing modified backbones and unnatural side chains to be readily selected based on target binding. Success stories covering the firs...

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

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

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