نتایج جستجو برای: تکنیک مولکولی sts

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

2017
Valerio Manippa Caterina Padulo Laura N. van der Laan Alfredo Brancucci

The easy availability of food has caused a shift from eating for survival to hedonic eating. Women, compared to men, have shown to respond differently to food cues in the environment on a behavioral and a neural level, in particular to energy rich (compared to low energy) foods. It has been demonstrated that the right posterior superior temporal sulcus (STS) is the only region exhibiting greate...

2017
Dong-Jin Ye Yeo-Jung Kwon Sangyun Shin Hyoung-Seok Baek Dong-Won Shin Young-Jin Chun

Steroid sulfatase (STS) is an enzyme responsible for the hydrolysis of aryl and alkyl sulfates. STS plays a pivotal role in the regulation of estrogens and androgens that promote the growth of hormone-dependent tumors, such as those of breast or prostate cancer. However, the molecular function of STS in tumor growth is still not clear. To elucidate the role of STS in cancer cell proliferation, ...

Journal: :Toxicology letters 2013
Chul-Hoon Sung Hee-Jung Im Nahee Park Yeojung Kwon Sangyun Shin Dong-Jin Ye Nam-Hyeon Cho Young-Shin Park Hyung-Kyoon Choi Donghak Kim Young-Jin Chun

Human steroid sulfatase (STS) plays an important role in regulating the formation of biologically active estrogens and may be a promising target for treating estrogen-mediated carcinogenesis. The molecular mechanism of STS gene expression, however, is still not clear. Growth factors are known to increase STS activity but the changes in STS expression have not been completely understood. To dete...

Journal: :Journal of Experimental & Clinical Assisted Reproduction 2005
Yukiko Otsuka Atsushi Yanaihara Shinji Iwasaki Junichi Hasegawa Takumi Yanaihara Takashi Okai

BACKGROUND: The purpose of this study was to localize the expression of steroid sulfatase (STS) in cumulus cells and to determine the relationship between STS mRNA expression and the serum levels of follicle-stimulating hormone (FSH), luteinizing hormone (LH), estradiol and progesterone. METHODS: The subject group included 49 women (29 to 44 years old) for whom in vitro fertilization treatment ...

Journal: :MCN. The American journal of maternal child nursing 2011
Kristina J Hung Ocean Berg

This article describes a quality improvement project in which early skin-to-skin (STS) contact, in the operating room (OR) and during recovery, was used as an intervention to increase the success of breastfeeding initiation among healthy infants after cesarean, at a large, urban, acute care teaching hospital. The nursing role is key for the intervention, but the program involves the entire peri...

2015
Giun-Yi Hung Chueh-Chuan Yen Jiun-Lin Horng Chun-Yu Liu Wei-Ming Chen Tain-Hsiung Chen Chien-Lin Liu Perbinder Grewal.

Most epidemiological studies of soft tissue sarcoma (STS) were performed in the Western countries, and only limited data highlighting that in the Asian population. The aim of this study is to conduct a comprehensive analysis for the incidence rates of STS in Taiwan.This was a population-based study analyzing the incidence rates and trends of the primary STS over extremities and trunk wall durin...

Journal: :The Biochemical journal 2013
Boris San Luis Nicolas Nassar Nick Carpino

Sts (suppressor of T-cell receptor signalling)-1 and Sts-2 are HPs (histidine phosphatases) that negatively regulate TCR (T-cell receptor) signalling pathways, including those involved in cytokine production. HPs play key roles in such varied biological processes as metabolism, development and intracellular signalling. They differ considerably in their primary sequence and substrate specificity...

Journal: :Physical therapy 2003
Ola Eriksrud Richard W Bohannon

BACKGROUND AND PURPOSE The ability to rise from a chair is important for independence in everyday life. This study was conducted to determine to what extent knee extension force (KEF) could explain independence in sit-to-stand (STS) performance from a standard chair. SUBJECTS AND METHODS This was a descriptive and correlational study of patients receiving acute rehabilitation (N=107). Measure...

Journal: :Journal of health economics 2010
Charles Courtemanche Michael Plotzke

This paper estimates the effect of ambulatory surgical centers (ASCs) on hospital surgical volume using hospital and year fixed effects models with several robustness checks. We show that ASC entry only appears to influence a hospital's outpatient surgical volume if the facilities are within a few miles of each other. Even then, the average reduction in hospital volume is only 2-4%, which is no...

Journal: :Journal of Chemical Physics 2021

A rovibrationally state-specific collision model for the O2(Σg−3)+O(P3) system is presented direct simulation Monte Carlo, including rotation–vibration–translation energy transfer, exchange, dissociation, and recombination processes. The two-step binary approach employed to reactions. Two available cross section databases by Andrienko/Boyd Esposito/Capitelli are resolved (rv-STS) vibrationally ...

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

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

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