نتایج جستجو برای: myeloid leukaemia

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

Journal: :Pathology 2023

A group of international experts, including haematopathologists, oncologists, and geneticists met on September 2021 in Chicago, IL, USA to update the 2016/17 World Health Organization classification system for haematopoietic tumours. After careful deliberation, introduced new International Consensus Classification (ICC) Myeloid Neoplasms Acute Leukaemias. The was published June 2022 (Arber DA, ...

Journal: :British journal of haematology 2005
Namiko Yamashita Motomi Osato Liqun Huang Masatoshi Yanagida Scott C Kogan Masayuki Iwasaki Takuro Nakamura Katsuya Shigesada Norio Asou Yoshiaki Ito

Haploinsufficiency of RUNX1/AML1 is associated with familial platelet disorder with a predisposition to acute myeloid leukaemia (FPD/AML), but the causal relationship remains to be addressed experimentally. Mice heterozygous for the Runx1 null mutation, Runx1+/-, are considered to be genetically comparable with human FPD/AML patients but do not develop spontaneous leukaemia. To induce additiona...

Journal: :In vivo 2011
Monika A Papiez Jarosław Baran Karolina Bukowska-Straková Mirosław Krośniak

BACKGROUND (-)-Epicatechin (EC) induces oxidative DNA damage in HL-60 cells. The association between genotoxic and apoptotic/necrotic effects of EC was studied in rats with acute myeloid leukaemia. MATERIALS AND METHODS Healthy and leukaemic rats were given EC by oral gavage at a dose of 40 mg/kg body weight for 22 consecutive days. Bone marrow cells were subjected to analysis of DNA damage b...

Journal: :Journal of obstetrics and gynaecology of India 2016
Kamal Kant Sahu Gaurav Prakash Prudhviraj Sanamandra Alka Khadwal Pranab Dey Prashant Sharma Subhash Chander Varma Pankaj Malhotra

Secondary involvement of female genitourinary system [1, 2] is more common in lymphoma than leukaemia [3, 4]. In leukaemia, acute myeloid leukaemia (AML) is known to have extra medullary involvement (chloroma, granulocytic sarcoma, etc.) [5, 6]. In case of acute lymphoblastic leukaemia (ALL), except for CNS and testis other extra medullary sites are rarely involved [7, 8]. Amongst genitourinary...

Journal: :Annals of the Academy of Medicine, Singapore 2011
Eugene S T Tan Mark B Y Tang Keith Y K Guan Joyce S S Lee Lorenzo Cerroni Suat Hoon Tan

Dear Editor, Myeloid sarcoma (MS) is an uncommon extramedullary tumour of malignant myeloid cells which predominantly occurs concurrently with or after the onset of acute myeloid leukaemia (AML). Careful clinicopathological correlation with comprehensive immunophenotyping of the malignant cells is essential to distinguish myeloid sarcoma from lymphoma with skin involvement. The early recognitio...

Journal: :Journal of clinical pathology 1987
J M Goldman

Patients with acute leukaemia have normal or near normal numbers of haemopoietic stem cells in their marrow at diagnosis. Remission is achieved when the administration of cytotoxic drugs eradicates the bulk of the leukaemic population while sparing normal haemopoiesis. The mechanism by which chemotherapy seems to act in this selective manner is essentially unknown. Nevertheless, remission rates...

Journal: :British Journal of Haematology 2006
Nicolas Leupin Alexandre Kuhn Barbara Hügli Tobias J Grob Rolf Jaggi Andreas Tobler Mauro Delorenzi Martin F Fey

Microarray gene expression profiles of fresh clinical samples of chronic myeloid leukaemia in chronic phase, acute promyelocytic leukaemia and acute monocytic leukaemia were compared with profiles from cell lines representing the corresponding types of leukaemia (K562, NB4, HL60). In a hierarchical clustering analysis, all clinical samples clustered separately from the cell lines, regardless of...

2013
Ponnuswamy Karkuzhali Velusamy Shanthi Thiruvengadam Usha

Acute megakaryocytic leukaemia (AMeL) is a rare subtype of acute myeloid leukaemia, which can be frequently misdiagnosed as acute myelofibrosis or myelosclerosis [1]. Chronic myeloid leukaemia (CML) presenting primarily as megakaryocytic blast crisis is very rare, with very few case reports published to date [2, 3]. This case report describes a 36-year-old woman who presented with anaemia and m...

Journal: :Turkish journal of haematology : official journal of Turkish Society of Haematology 2003
Hakan Savlı Balint Nagy

There are many genes involved in vitamin D dependent differentiation of acute myeloid leukaemia cell line HL-60 cells. Involvement of HOX genes in leukaemia and differentiation is just beginning to be appreciated. In order to understand the relationship with 1,25(OH)2D3 dependent differentiation of myeloid leukaemia, we studied the expression of HOX A9 gene. HL-60 cells were exposed to 1,25(OH)...

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

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

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