نتایج جستجو برای: sam bogaerts

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

Journal: :Journal of cell science 2009
Dandan Zhong Jingfeng Zhang Shuai Yang Unice J K Soh Jan Paul Buschdorf Yi Ting Zhou Daiwen Yang Boon Chuan Low

Deleted in liver cancer 1 (DLC1) is a multi-modular Rho-GTPase-activating protein (RhoGAP) and a tumor suppressor. Besides its RhoGAP domain, functions of other domains in DLC1 remain largely unknown. By protein precipitation and mass spectrometry, we identified eukaryotic elongation factor 1A1 (EF1A1) as a novel partner for the sterile alpha motif (SAM) domain of DLC1 but not the SAM domain of...

Journal: :Biochimica et Biophysica Acta (BBA) - Gene Regulatory Mechanisms 2014

Journal: :Journal of bacteriology 1995
S Taguchi M Suzuki S Kojima K Miura H Momose

Previously, we isolated a candidate for an endogenous target enzyme(s) of the Streptomyces subtilisin inhibitor (SSI), termed SAM-P20, from a non-SSI-producing mutant strain (S. Taguchi, A. Odaka, Y. Watanabe, and H. Momose, Appl. Environ. Microbiol. 61:180-186, 1995). In this study, in order to investigate the detailed enzymatic properties of this protease, an overproduction system of recombin...

Journal: :Circulation 1984
C Pollick H Rakowski E D Wigle

We performed simultaneous echocardiographic and hemodynamic studies in 11 patients with muscular subaortic stenosis to determine whether systolic anterior motion (SAM) of the anterior mitral leaflet and the pressure gradient are related quantitatively. SAM without septal contact was associated with either no gradient or a small impulse gradient of less than 10 mm Hg. SAM with septal contact was...

Journal: :Miranda 2016

Journal: :Andragoška spoznanja 2004

Journal: :Journal of neurology, neurosurgery, and psychiatry 1990
T Bottiglieri P Godfrey T Flynn M W Carney B K Toone E H Reynolds

Cerebrospinal fluid (CSF) S-adenosylmethionine (SAM) levels were significantly lower in severely depressed patients than in a neurological control group. The administration of SAM either intravenously or orally is associated with a significant rise of CSF SAM, indicating that it crosses the blood-brain barrier in humans. These observations provide a rational basis for the antidepressant effect ...

2001
Joong-Seok Moon William C. Athas Peter A. Beerel Jeffrey T. Draper

This paper presents the design and evaluation of a sequential access memory (SAM) that provides low power and high performance by replacing address decoders with special locally-communicating sequencers. A test chip containing one 16x16-b SAM and one 64x16-b SAM (consisting of four 16x16-b banks) has been designed, fabricated, and evaluated using a 0.25-μm CMOS process. With a clock frequency o...

Journal: :Circulation 1982
C Pollick C D Morgan B W Gilbert H Rakowski E D Wigle

Recent studies indicate that in patients with muscular subaortic stenosis at rest, left ventricular outflow tract obstruction is associated with severe systolic anterior motion (SAM) of the anterior mitral leaflet and prolonged SAM-septal contact. We correlated the temporal relationships between echocardiographic and hemodynamic events in 18 patients with muscular subaortic stenosis (gradient o...

Journal: :The Journal of biological chemistry 2002
Ranjini Ramachander Chongwoo A Kim Martin L Phillips Cameron D Mackereth Christopher D Thanos Lawrence P McIntosh James U Bowie

SAM (sterile alpha motif) domains are protein-protein interaction modules found in a large number of regulatory proteins. Byr2 and Ste4 are two SAM domain-containing proteins in the mating pheromone response pathway of the fission yeast, Schizosaccharomyces pombe. Byr2 is a mitogen-activated protein kinase kinase kinase that is regulated by Ste4. Tu et al. (Tu, H., Barr, M., Dong, D. L., and Wi...

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

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

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