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

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

2014
Fangfang Jiang Wei Zhao Lijie Zhou Zifeng Liu Wenqing Li Dongsheng Yu

microRNAs have been shown to play critical roles in regulating the chemosensitivity of cancer cells. As a member of the oncogenic miRNAs (oncomiRs), miR-222 has been reported to drive the oncogenesis of many types of malignancies. However, little is known concerning the specific role of miR-222 in human oral squamous cell carcinoma (OSCC). The present study explored the role and mechanism of mi...

2014
Yifeng Bai Yanqin Sun Juan Peng Hongzhan Liao Hongyi Gao Ying Guo Linlang Guo

Secretagogin (SCGN) has recently been identified to play a crucial role in cell apoptosis, receptor signaling and differentiation. However, its clinical significance and functional roles in SCLC chemoresistance remain unknown. Here we examined the expression of SCGN in clinical samples from SCLC patients and evaluated its relation with clinical prognosis. Then up and down-regulation of SCGN wer...

Journal: :Toxicology 2010
Wei Liang Chunhua Lu Jing Li James Q Yin Robert Chunhua Zhao

Human bone marrow mesenchymal stem cells (MSCs) are important cell population located in bone marrow that are thought to have multiple functions in cell transplantation and gene therapy. Although in vitro experiments have demonstrated that hMSCs are resistant to apoptosis induction by DNA damage agents such as chemotherapeutic substances used in bone marrow transplantation, the molecular mechan...

Journal: :BJU international 2009
Paola Gazzaniga Angela Gradilone Ettore de Berardinis Alessandro Sciarra Cristiano Cristini Giuseppe Naso Franco di Silverio Luigi Frati Anna Maria Aglianò

OBJECTIVE To describe the design of a new chemosensitivity assay based on the expression of genes involved in the resistance to standard intravesical regimens, to allow individualization of therapy for high-risk non-muscle-invasive bladder cancer. PATIENTS AND METHODS To date, 35 patients with high-risk non-muscle-invasive bladder cancer have been enrolled, all candidates for transurethral re...

2017
Wei Song Lin Tang Yumei Xu Jing Xu Wenwen Zhang Hui Xie Shui Wang Xiaoxiang Guan

Emerging evidence has shown that adding poly(ADP-ribose) polymerase (PARP) inhibitors to chemotherapy regimens is superior to the control regimens alone in BRCA1-mutated triple-negative breast cancer (TNBC) patients, but their underlying mechanisms have not been fully elucidated. In this study, using miRNA microarray analysis of two BRCA1-mutated TNBC cell lines, we found that miR-664b-5p expre...

2010
Bo Wang Yong-Fei Xu Bang-Shun He Yu-Qin Pan Li-Rong Zhang Chan Zhu Li-Li Qu Shu-Kui Wang

BACKGROUND CD147 is a widely distributed cell surface glycoprotein that belongs to the Ig superfamily. CD147 has been implicated in numerous physiological and pathological activities. Enriched on the surface of many tumor cells, CD147 promotes tumor growth, invasion, metastasis and angiogenesis and confers resistance to some chemotherapeutic drugs. In this study, we investigated the possible ro...

Journal: :The European respiratory journal 1998
J M Pino-García F García-Río J J Díez M A Gómez-Mendieta M A Racionero S Díaz-Lobato J Villamor

We sought to examine the breathing pattern, inspiratory drive and chemosensitivity of hyperthyroid patients and to explore the interactions between their thyroid hormones, basal metabolism and chemosensitivity. We studied 15 hyperthyroid patients and 15 sex- and age-matched controls. Thyroid hormone levels, arterial blood gas tensions, lung volumes, diffusing capacity for CO, maximal respirator...

Journal: :The Japanese journal of physiology 1987
S Okita H Kimura F Kunitomo H Tojima Y Yuguchi K Tatsumi T Kuriyama S Watanabe Y Honda

Ten healthy young males were studied with a double-blind, cross-over trial to determine whether or not chlormadinone acetate (CMA), a potent synthetic progesterone, augments hypoxic chemosensitivity. Seven days after CMA administration, inspiratory minute volume (VI) and tidal volume (VT) significantly increased. PaCO2 decreased by 3.0 +/- 2.6 (S.D.) Torr (p less than 0.05) and plasma bicarbona...

Journal: :Okayama Igakkai Zasshi (Journal of Okayama Medical Association) 1990

Journal: :The Showa University Journal of Medical Sciences 1998

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

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

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