نتایج جستجو برای: adenylate cyclase

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

2005
Kevin P. Marzo Martin J. Frey John R. Wilson Bruce T. Liang David R. Manning

in an experimental canine model of low-output heart failure produced by chronic rapid ventricular pacing. The contractile response occurring after exposure to the P-adrenergic agonist dobutamine, measured as peak left ventricular +dP/dt, was decreased after 3 weeks of pacing. To further characterize the diminished functional responsiveness to 3-adrenergic receptor stimulation, ,3-adrenergic rec...

Journal: :The Journal of biological chemistry 1986
A Enjalbert F Sladeczek G Guillon P Bertrand C Shu J Epelbaum A Garcia-Sainz S Jard C Lombard C Kordon

Despite their opposite effects on prolactin secretion, both dopamine and angiotensin II inhibit adenylate cyclase activity in homogenates of anterior pituitary cells in primary culture. Dopamine and angiotensin II inhibition of adenylate cyclase was not additive, suggesting that both neurohormones inhibit the adenylate cyclase of the lactotroph cells. Pretreatment with Bordetella pertussis toxi...

Journal: :The Journal of biological chemistry 1984
R V Rebois P H Fishman

The murine Leydig tumor cell line, MLTC-1, has specific cell surface receptors for human chorionic gonadotropin (hCG), which are coupled to adenylate cyclase. When the cells were exposed to hCG, there was a loss of these receptors (down-regulation), which was both dose- and time-dependent. Down-regulation was inhibited by lowering the temperature, removing bound hormone or blocking protein synt...

Journal: :European journal of biochemistry 1988
T J Resink M P Panchenko V A Tkachuk F R Bühler

In the presence of 1 microM atrial natriuretic factor (ANF) and low (0.1 mM) Mg2+ concentrations, the initial rate of binding of [3H]guanosine 5'-[beta, gamma-imido)triphosphate [( 3H]p[NH]ppG) to rat lung plasma membranes was increased twofold to threefold. ANF-dependent stimulation of the initial rate of [3H]p[NH]ppG binding was reduced at high (5 mM) Mg2+ concentrations. Preincubation of mem...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1985
F Z Chung H W Weber M M Appleman

In adipocytes, adenylate cyclase is positively regulated by beta-adrenergic agents and negatively regulated by adenosine. Incubation of adipocytes with adenosine deaminase relieves the inhibition of adenylate cyclase by destroying the adenosine that the cells release into the medium. When adipocytes are incubated with adenosine deaminase and the beta-adrenergic agent isoproterenol, most of thei...

Journal: :Science 1979
I Valverde A Vandermeers R Anjaneyulu W J Malaisse

Pancreatic islets contain calmodulin. The protein binds to a particulate fraction derived from the islets and stimulates adenylate cyclase activity in this subcellular fraction, both phenomena being activated by ionized calcium. A calcium-dependent stimulation of adenylate cyclase by endogenous calmodulin may contribute to the accumulation of adenosine 3',5'-monophosphate evoked by insulin rele...

Journal: :The Biochemical journal 1991
I A Wadman R W Farndale B R Martin

1. Incubation of human platelet membranes with guanosine 5'-[beta gamma-imido]triphosphate (p[NH]ppG) causes a time-dependent increase in the activation of adenylate cyclase due to Gs (the stimulatory GTP-binding protein). Forskolin enhances adenylate cyclase activity but does not interfere with the process of activation. The activation follows first-order kinetics in both the presence and the ...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1975
T Braun R F Dods

A distinctive Mn-2+-sensitive adenylate cyclase [ATP pyrophosphate-lyase(cyclizing), EC 4.6.1.1] system insensitive to fluoride has been found in rat seminiferous tubules and epididymal sperm. The development of this distinctive adenylate cyclase in testis was studied during spermatogenesis. It was first detectable in seminiferous tubules in immature rats at about the time of the first reductiv...

Journal: :Journal of neurochemistry 1985
G J Treisman N Muirhead L Iwaniec M E Gnegy

In rat striatum, the activation of adenylate cyclase by the endogenous Ca2+-binding protein, calmodulin, is additive with that of GTP but is not additive with that of the nonhydrolyzable GTP analog, guanosine-5'-(beta, gamma-imido)triphosphate (GppNHp). One possible mechanism for this difference could be an effect of calmodulin on GTPase activity which has been demonstrated to "turn-off" adenyl...

2002
RABARY RAJERISON JEANNINE MARCHETTI

A subcellular fraction prepared from rat kidney medulla contained vasopressin-sensitive adenylate cyclase and vasopressin binding sites. Vasopressin stimulation resulted in an increase in the maximal velocity of the reaction with no change in the apparent K, for ATP. A maximum activation ratio (5 to 10) was obtained at low Mg2+ concentration (0.75 mM) and pH 7.4. The apparent Km for vasopressin...

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

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

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