نتایج جستجو برای: alkaline phosphatase

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

Journal: :Circulation research 2006
W Charles O'Neill

Vascular Calcification To the Editor: In their editorial on vascular calcification, Demer and Tintut1 incorrectly state that pyrophosphate reduces calcification by inhibiting alkaline phosphatase. Actually, the opposite is true. Alkaline phosphatase promotes calcification by reducing pyrophosphate levels. Pyrophosphate is a substrate for alkaline phosphatase,2 and this enzyme regulates pyrophos...

Journal: :Clinical chemistry 1980
R N Weijers

The existence of an alkaline phosphatase-lipoprotein-X complex was demonstrated as an abnormally moving band in the agar-agarose gel alkaline phosphatase pattern of sera from 58 patients in a group of 72 patients whose sera contained lipoprotein-X. The position of the abnormally moving band in the agar-agarose gel alkaline phosphatase pattern and the percentage of alkaline phosphatase activity ...

Journal: :The Journal of clinical investigation 1973
A Baker M Kaplan D V Kimberg

The present studies were undertaken to determine the role, if any, of cyclic 3',5'-adenosine monophosphate (cyclic AMP) as a chemical inducer of rat liver alkaline phosphatase. Cholera enterotoxin, given intravenously to rats, led to a rapid rise in the activity of hepatic adenyl cyclase that was 7(1/2) times greater than control values in 6 h. Cyclic AMP levels were also significantly increase...

Journal: :Clinical chemistry 1977
K Higashino R Otani S Kudo Y Yamamura

We examined 19 hepatoma tissues for alkaline phosphatase isoenzyme and found that six have both the Kasahara isoenzyme and an alkaline phosphatase with a unique electrophoretic mobility, in addition to the liver-type enzyme. From two of six carcinoma tissues, the abnormal enzyme was partly purified and subjected to a detailed analysis, which clarified that the abnormal enzyme resembled a fetal ...

Journal: :cell journal 0

introduction: the present study was undertaken to produce alkaline phosphatase anti- alkaline phosphatase (apaap) complex and to use it in one of the most practical methods of determining the site of antigen in tissue or in cell, i.e. apaap technique, and its comparison with similar foreign products. materials and methods: in this basic and applied study the secreted antibodies of the two hybri...

Journal: :Cancer research 1977
R N Hiramoto V K Ghanta S J Soong D C Hurst

Alkaline phosphatase was monitored in 17 mice with s.c.-implanted tumors to relate the total circulating alkaline phosphatase to the total number of tumor cells in each mouse. There was a semilogarithmic relationship between the alkaline phosphatase units and the number of tumor cells. A time-independent standard plot of alkaline phosphatase and the number of tumor cells was used to estimate th...

Journal: :Clinical chemistry 1987
P M Crofton

The isoenzymes of alkaline phosphatase (EC 3.1.3.1) in plasma of 37 preterm and 21 term neonates two weeks postpartum have been studied with regard to electrophoretic mobility, sialic acid content, inhibition properties, heat lability, molecular mass, and binding to lectins. Term infants generally had a single form of alkaline phosphatase present in significant amounts, identified by the above ...

Journal: :Proceedings of the National Academy of Sciences of the United States of America 1985
C Manoil J Beckwith

We constructed a derivative of transposon Tn5 that permits the generation of hybrid proteins composed of alkaline phosphatase (EC 3.1.3.1) lacking its signal peptide fused to amino-terminal sequences of other proteins. Such a hybrid gives alkaline phosphatase activity if the protein fused to alkaline phosphatase contributes sequences that promote export and thus compensate for the missing alkal...

Journal: :Clinical chemistry 1991
M E De Broe V O Van Hoof

We used quantitative assays to measure the activity of the bone, liver, and intestinal forms of alkaline phosphatase in plasma in 75 patients with endstage chronic renal failure undergoing hemodialysis. The results were correlated with radiological and other biochemical indices of bone disease and with biochemical indices of liver disease. The total activity of alkaline phosphatase in plasma in...

Journal: :The Journal of Cell Biology 1982
WM Burch HE Lebovitz

Cyclic AMP content in embryonic chick pelvic cartilage increases significantly as the embryo ages from 8 to 10 d. This in ovo elevation in cyclic AMP content precedes maximal cartilage alkaline phosphatase activity by some 24 h. We studied whether this temporal relationship may be causally related, using an in vitro organ culture. Incubation of pelvic cartilage from 9- and 10-d embryos in mediu...

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

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

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