نتایج جستجو برای: diacetylmonoxime

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

Journal: :American journal of physiology. Heart and circulatory physiology 2010
Xin Wu Zhe Sun Andrea Foskett Jerome P Trzeciakowski Gerald A Meininger Mariappan Muthuchamy

Integrins link the extracellular matrix (ECM) with the intracellular cytoskeleton and other cell adhesion-associated signaling proteins to function as mechanotransducers. However, direct quantitative measurements of the cardiomyocyte mechanical state and its relationship to the interactions between specific ECM proteins and integrins are lacking. The purpose of this study was to characterize th...

Journal: :Biophysical journal 2007
Ninita H Brown Hana M Dobrovolny Daniel J Gauthier Patrick D Wolf

Optical fiber-based mapping systems are used to record the cardiac action potential (AP) throughout the myocardium. The optical AP contains a contraction-induced motion artifact (MA), which makes it difficult to accurately measure the action potential duration (APD). MA is removed by preventing contraction with electrical-mechanical uncoupling drugs, such as 2,3-butanedione monoxime (BDM). We d...

Journal: :Journal of experimental botany 2004
F Baluska J Samaj A Hlavacka J Kendrick-Jones D Volkmann

The fluorescent dye Lucifer Yellow (LY) is a well-known and widely-used marker for fluid-phase endocytosis. In this paper, both light and electron microscopy revealed that LY was internalized into transition zone cells of the inner cortex of intact maize root apices. The internalized LY was localized within tubulo-vesicular compartments invaginating from the plasma membrane at actomyosin-enrich...

Journal: :Circulation research 1994
T B Johnson R L Kent B A Bubolz P J McDermott

An electrical stimulation system was designed to regulate synchronized contractile activity of neonatal rat cardiocytes and to examine the effects of mechanical contraction on cardiocyte growth. Continuous electrical stimulation at a pulse duration of 5 milliseconds and frequency of 3 Hz resulted in a time-dependent accumulation of cell protein that reached 34% above initial values, as measured...

Journal: :Haematologica 2002
Doris Cerecedo Roberto Stock Sirenia González Elba Reyes Ricardo Mondragón

BACKGROUND AND OBJECTIVES Cytoskeletal elements determine the changes in platelet cell shape which occur during adhesion, aggregation and release of granular contents as part of the activation process. The aim of this study was to characterize the changes in the distribution of actin filaments, myosin and tubulin molecules during several stages of platelet adhesion to glass and their associatio...

1999
GAIL HECHT

Hecht, Gail, and Athanasia Koutsouris. Myosin regulation of NKCC1: effects on cAMP-mediated Cl2 secretion in intestinal epithelia. Am. J. Physiol. 277 (Cell Physiol. 46): C441–C447, 1999.—The basally located actin cytoskeleton has been demonstrated previously to regulate Cl2 secretion from intestinal epithelia via its effects on the Na1-K1-2Cl2 cotransporter (NKCC1). In nontransporting epitheli...

Journal: :Circulation research 1989
L A Mulieri G Hasenfuss F Ittleman E M Blanchard N R Alpert

To prevent dissection injury when cutting strip preparations from human left ventricular papillary muscle tissue, dissections were carried out with 2,3-butanedione monoxime (30 mM) added to Krebs-Ringer solution and followed by washout with normal solution. Eleven muscle strip preparations were dissected from left ventricular papillary muscle tissue of five patients undergoing mitral valve repl...

Journal: :Blood 2000
P J Mansfield J A Shayman L A Boxer

Polymorphonuclear leukocyte (PMNL) phagocytosis mediated by FcgammaRII proceeds in concert with activation of the mitogen-activated protein (MAP) kinase, extracellular signal-regulated kinase ERK2. We hypothesized that myosin light chain kinase (MLCK) could be phosphorylated and activated by ERK, thereby linking the MAP kinase pathway to the activation of cytoskeletal components required for ps...

Journal: :Plant & cell physiology 2002
Gregory Jedd Nam-Hai Chua

Here we examine peroxisomes in living plant cells using transgenic Arabidopsis thaliana plants expressing the green fluorescent protein (GFP) fused to the peroxisome targeting signal 1 (PTS1). Using time-lapse laser scanning confocal microscopy we find that plant peroxisomes exhibit fast directional movement with peak velocities approaching 10 microm s(-1). Unlike mammalian peroxisomes which mo...

Journal: :American journal of physiology. Heart and circulatory physiology 2000
R C Scaduto L W Grotyohann

We used 2,3-butanedione monoxime (BDM) to suppress work by the perfused rat heart and to investigate the effects of calcium on NADH production and tissue energetics. Hearts were perfused with buffer containing BDM and elevated perfusate calcium to maintain the rates of cardiac work and oxygen consumption at levels similar to those of control perfused hearts. BDM plus calcium hearts displayed hi...

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

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

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