نتایج جستجو برای: fn hyperoperation

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

Journal: :Arteriosclerosis, thrombosis, and vascular biology 1998
M K Magnusson D F Mosher

In the past 2 decades, it has been appreciated that the functions of the extracellular matrix (ECM) are not entirely structural. ECM components interact with specific adhesion receptors on cell surfaces and regulate various cellular functions, including differentiation, proliferation, migration, and apoptosis. Fibronectin (FN) is a paradigm adhesive protein, nonreactive with adhesion receptors ...

Journal: :The Biochemical journal 2004
Baljit Walia Florencia E Castaneda Lixin Wang Vasantha L Kolachala Rahul Bajaj Jesse Roman Didier Merlin Andrew T Gewirtz Shanthi V Sitaraman

Fibronectin (FN) is a multifunctional protein that plays important roles in many biological processes including cell adhesion and migration, wound healing and inflammation. Cellular FNs are produced by a wide variety of cell types including epithelial cells, which secrete them and often organize them into extensive extracellular matrices at their basal surface. However, regulation of FN synthes...

Journal: :The Journal of Cell Biology 1989
B Carnemolla E Balza A Siri L Zardi M R Nicotra A Bigotti P G Natali

Fibronectin (FN) represents the mixture of a number of structurally different molecules (isoforms) whose make-up varies depending on the FN sources. FN from cultured transformed human cells has a very different isoform composition with respect to its normal counterpart. In fact, SV-40-transformed WI-38VAI3 human fibroblasts produce high levels of a FN isoform (B-FN) which is very poorly express...

Journal: :Circulation research 2010
Ryan E Feaver Bradley D Gelfand Chong Wang Martin A Schwartz Brett R Blackman

RATIONALE The extracellular matrix protein fibronectin (FN) is focally deposited in regions of atherosclerosis, where it contributes to inflammatory signaling. OBJECTIVE To elucidate the mechanism by which FN deposition is regulated by local shear stress patterns, its dependence on platelet-endothelial cell adhesion molecule (PECAM)-1 mechanotransduction and the role this pathway plays in sus...

Journal: :The Journal of Cell Biology 1987
K Toda T L Tuan P J Brown F Grinnell

Keratinocyte attachment to fibronectin (FN) substrata was inhibited by the peptide Gly-Arg-Gly-Asp-Ser-Pro-Cys, but not by the variant peptide Gly-Arg-Gly-Glu-Ser-Pro. The RGDS-containing peptide did not inhibit keratinocyte adhesion to collagen. Keratinocyte adhesion to FN substrata also was inhibited by polyclonal anti-FN receptor antibodies originally prepared against the 140-kD FN receptors...

Journal: :Nordisk Tidsskrift for Kriminalvidenskab 1997

Journal: :IEEE Transactions on Nuclear Science 1975

2013
Walid Krichene

we have by construction μ(En) = an. An important observation is that a subset of consecutive intervals En, En+1, . . . , En+k are either pairwise disjoint, or they cover the whole interval [0, 1]. Now for all n, let fn = 1En . Then we have • ‖fn‖1 = ∫ X |1En |dμ = μ(En) = an. • for all x ∈ [0, 1], (fn(x))n does not converge. Indeed, if we suppose by contradiction that (fn(x))n converges for som...

Journal: :Infection and immunity 2000
M Huesca Q Sun R Peralta G M Shivji D N Sauder M J McGavin

A fibronectin (Fn)-binding adhesin of Staphylococcus aureus contains three tandem 37- or 38-amino-acid motifs (D1, D2, and D3), which function to bind Fn. Plasma from patients with S. aureus infections contain antibodies that preferentially recognize ligand induced binding sites in the D motifs and do not inhibit Fn binding (F. Casolini, L. Visai, D. Joh, P. G. Conaldi, A. Toniolo, M. Höök, and...

2016
Elisa Ventura Cinzia Cordazzo Rodolfo Quarto Luciano Zardi Camillo Rosano Sompop Bencharit

BACKGROUND Fibronectin (FN) is a large multidomain molecule that is involved in many cellular processes. Different FN isoforms arise from alternative splicing of the pre-mRNA including, most notably, the FN isoform that contains the "extra-domain-B" (ED-B). The FN isoform containing ED-B (known as B-FN) is undetectable in healthy adult tissues but is present in large amounts in neoplastic and f...

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

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

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