نتایج جستجو برای: hpo axis suppression

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

2011
M. Dilipkumar M. Rajasimman N. Rajamohan

Plackett-Burman design was employed for screening 18 nutrient components for the production of inulinase using Garlic as substrate by Streptomyces sp. in solid-state fermentation (SSF). From the experiments, 4 nutrients, namely, NH(4)NO(3), MnSO(4)·7H(2)O, Soya bean cake, and K(2)HPO(4) were found to be most significant nutrient components. Hence, these 4 components are selected. The selected c...

Journal: :Current Biology 2012
Joanna Chen Esther M. Verheyen

The Hippo (Hpo) tumor suppressor pathway regulates tissue size by inhibiting cell proliferation and promoting apoptosis. The core components of the pathway, Hpo, Salvador, Warts (Wts), and Mats, form a kinase cascade to inhibit the activity of Yorkie (Yki), the transcriptional effector of the pathway. Homeodomain-interacting protein kinases (Hipks) are a family of conserved serine/threonine kin...

2013
Yunyun Jin Jinjin Xu Meng-Xin Yin Yi Lu Lianxin Hu Peixue Li Peng Zhang Zengqiang Yuan Margaret S Ho Hongbin Ji Yun Zhao Lei Zhang

Chromatin remodeling processes are among the most important regulatory mechanisms in controlling cell proliferation and regeneration. Drosophila intestinal stem cells (ISCs) exhibit self-renewal potentials, maintain tissue homeostasis, and serve as an excellent model for studying cell growth and regeneration. In this study, we show that Brahma (Brm) chromatin-remodeling complex is required for ...

2017
Ernesto Jiménez-Ruiz Dag Hovland Laura A. Slaughter Tony Håndstad Arild Waaler

The work presented in this paper is framed within the context of the BigMed project, a project funded by the Norwegian Research Council. One of the objectives of BigMed is to enhance the phenotype acquisition process in newborns with a monogenetic disorder, one of the four patient groups studied in the project. The use of the Human Phenotype Ontology (HPO) [1] to tag phenotypes and systems like...

Journal: :Journal of the American Chemical Society 2011
Bogdana Goryanova Tina L Amyes John A Gerlt John P Richard

Orotidine 5'-monophosphate decarboxylase (OMPDC) catalyzes the exchange for deuterium from solvent D(2)O of the C-6 proton of 1-(β-d-erythrofuranosyl)-5-fluorouracil (FEU), a phosphodianion truncated product analog. The deuterium exchange reaction of FEU is accelerated 1.8 × 10(4)-fold by 1 M phosphite dianion (HPO(3)(2-)). This corresponds to a 5.8 kcal/mol stabilization of the vinyl carbanion...

2012
Maryam Khordad Robert E. Mercer Peter K. Rogan

Extracting biomedical named entities is one of the major challenges in automatic processing of biomedical literature. This paper proposes a machine learning approach for finding phenotype names in text. Features are included in a machine learning infrastructure to implement the rules found in our previously developed rule-based system. The system also uses two available resources: MetaMap and H...

2017
Jiajie Peng Qianqian Li Xuequn Shang

BACKGROUND Although disease diagnosis has greatly benefited from next generation sequencing technologies, it is still difficult to make the right diagnosis purely based on sequencing technologies for many diseases with complex phenotypes and high genetic heterogeneity. Recently, calculating Human Phenotype Ontology (HPO)-based phenotype semantic similarity has contributed a lot for completing d...

Journal: :Acta crystallographica. Section C, Crystal structure communications 2004
Laura E Gordon William T A Harrison

The title compound, poly[dizinc(II)-mu-ethylenediamine-di-mu-(hydrogen phosphito)], beta-[H(2)N(CH(2))(2)NH(2)](0.5)[ZnHPO(3)] or [Zn(2)(HPO(3))(2)(C(2)H(8)N(2))](n), is a hybrid organic/inorganic solid built up from ethylenediamine molecules (which lie about inversion centres), Zn(2+) cations (coordinated by three O atoms and one N atom) and HPO(3)(2-) hydrogen phosphite groups. The organic sp...

2008
T. Manso R. Bodas T. Castro V. Jimeno A. R. Mantecón

Twenty seven lambs were used to investigate the effects of the inclusion of 4% hydrogenated palm oil (HPO) or sunflower oil (SFO) in the concentrate on feed intake, animal performance and fatty acid composition. Animals (16.2±0.27 kg initial weight) were fed concentrate (Control, HPO or SFO) and barley straw ad libitum and slaughtered at 25 kg. Vegetable oils did not affect (P>0.05) feed intake...

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

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

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