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

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

2012
Lauro M. de Souza Guilherme L. Sassaki Maria Teresa Villela Romanos Eliana Barreto-Bergter

Glycolipids were extracted from the red alga Osmundaria obtusiloba from Southeastern Brazilian coast. The acetone insoluble material was extracted with chloroform/methanol and the lipids, enriched in glycolipids, were fractionated on a silica gel column eluted with chloroform, acetone and then methanol. Three major orcinol-positive bands were found in the acetone and methanol fractions, being d...

Journal: :Philosophical transactions of the Royal Society of London. Series B, Biological sciences 2003
Konrad Sandhoff Thomas Kolter

Glycolipids are a large and heterogeneous family of sphingolipids that form complex patterns on eukaryotic cell surfaces. This molecular diversity is generated by only a few enzymes and is a paradigm of naturally occurring combinatorial synthesis. We report on the biosynthetic principles leading to this large molecular diversity and focus on sialic acid-containing glycolipids of the ganglio-ser...

Journal: :The Journal of Cell Biology 2005
Rabiya S. Tuma

Boundary proteomics pecialized regions of chromatin flank the edges of transcriptionally silent DNA, separating it from euchromatin. For example, such boundary elements insulate the silent mating type loci ( HMR and HML ) in yeast. The molecular nature of these boundaries has remained obscure. Now, Tackett et al. (page 35) have identified protein complexes that are important for maintaining suc...

2012
Karen M. Gallegos Deborah G. Conrady Sayali S. Karve Thusitha S. Gunasekera Andrew B. Herr Alison A. Weiss

BACKGROUND Immunologically distinct forms of Shiga toxin (Stx1 and Stx2) display different potencies and disease outcomes, likely due to differences in host cell binding. The glycolipid globotriaosylceramide (Gb3) has been reported to be the receptor for both toxins. While there is considerable data to suggest that Gb3 can bind Stx1, binding of Stx2 to Gb3 is variable. METHODOLOGY We used iso...

Journal: :Omics : a journal of integrative biology 2014
Eun Ji Joo Amanda Weyers Guoyun Li Leyla Gasimli Lingyun Li Won Jun Choi Kyung Bok Lee Robert J Linhardt

Glycans play a critical role in physiological and pathological processes through interaction with a variety of ligands. Altered expression and dysregulation of these molecules can cause aberrant cellular function such as malignancy. Glycomics provide information of the structure and function of glycans, glycolipids, and glycoproteins such as proteoglycans, and may help to predict cancer develop...

2011
Cindy Wang Engy A. Mahrous Richard E. Lee Martha M. Vestling Kuni Takayama

The addition of polyoxyethylene sorbitan monooleate (Tween 80) to a culture of mycobacteria greatly influences cell permeability and sensitivity to antibiotics but very little is known regarding the underlying mechanism. Here we show that Corynebacterium matruchotii (surrogate of mycobacteria) converts Tween 80 to a structural series of polyoxyethylenic acids which are then used to form novel s...

Journal: :Glycobiology 2013
Thomas Geske Katharina Vom Dorp Peter Dörmann Georg Hölzl

Phosphate deficiency is characteristic for many natural habitats, resulting in different physiological responses in plants and bacteria including the replacement of phospholipids by glycolipids and other phosphorous-free lipids. The plant pathogenic bacterium Agrobacterium tumefaciens, which is free of glycolipids under full nutrition, harbors an open reading frame (ORF) coding for a processive...

Journal: :Glycobiology 2011
Lola Svensson Laura Bindila Jonas Angström Bo E Samuelsson Michael E Breimer Lennart Rydberg Stephen M Henry

Glycolipids from the red cells of a rare blood group A subgroup individual, expressing the blood group A(3) phenotype with the classical mixed-field agglutination phenomenon, A(2(539G>A))/O(1) genotype, and an unusual blood group A glycolipid profile, were submitted to a comprehensive biochemical and structural analysis. To determine the nature of blood group A glycolipids in this A(3) phenotyp...

2012
Benjamin M. Swarts Cynthia M. Holsclaw John C. Jewett Marina Alber Douglas M. Fox M. Sloan Siegrist Julie A. Leary Rainer Kalscheuer Carolyn R. Bertozzi

Mycobacteria, including the pathogen Mycobacterium tuberculosis, use the non-mammalian disaccharide trehalose as a precursor for essential cell-wall glycolipids and other metabolites. Here we describe a strategy for exploiting trehalose metabolic pathways to label glycolipids in mycobacteria with azide-modified trehalose (TreAz) analogues. Subsequent bioorthogonal ligation with alkyne-functiona...

Journal: :Journal of Japan Oil Chemists' Society 1996

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

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

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