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

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

Journal: :Journal of immunology 2010
Piritta Felker Kristin Seré Qiong Lin Christiane Becker Mihail Hristov Thomas Hieronymus Martin Zenke

Dendritic cells (DCs) in lymphoid tissue comprise conventional DCs (cDCs) and plasmacytoid DCs (pDCs) that develop from common DC progenitors (CDPs). CDPs are Flt3(+)c-kit(int)M-CSFR(+) and reside in bone marrow. In this study, we describe a two-step culture system that recapitulates DC development from c-kit(hi)Flt3(-/lo) multipotent progenitors (MPPs) into CDPs and further into cDC and pDC su...

2014
Duy C. Huynh

This paper proposes a novel application of a chaos particle swarm optimization (PSO) algorithm for tracking a maximum power point (MPP) of a solar photovoltaic (PV) panel under varying atmospheric conditions. Solar PV cells have a nonlinear V-I characteristic with a distinct MPP which depends on environmental factors such as temperature and irradiation. In order to continuously harvest maximum ...

1993
Matthew T. O'Keefe Aaron Sawdey

Massively parallel processors (MPPs) hold the promise of extremely high performance that, if realized, could be used to study problems of unprecedented size and complexity. One of the primary stumbling blocks to this promise has been the lack of tools to automatically translate application codes to MPP form. In this paper we show how applications codes written in a subset of Fortran 77 called F...

Journal: :Cell 2005
Mark J. Kiel Ömer H. Yilmaz Toshihide Iwashita Osman H. Yilmaz Cox Terhorst Sean J. Morrison

To improve our ability to identify hematopoietic stem cells (HSCs) and their localization in vivo, we compared the gene expression profiles of highly purified HSCs and non-self-renewing multipotent hematopoietic progenitors (MPPs). Cell surface receptors of the SLAM family, including CD150, CD244, and CD48, were differentially expressed among functionally distinct progenitors. HSCs were highly ...

Journal: :Cell 2013
Ryo Yamamoto Yohei Morita Jun Ooehara Sanae Hamanaka Masafumi Onodera Karl Lenhard Rudolph Hideo Ema Hiromitsu Nakauchi

Consensus holds that hematopoietic stem cells (HSCs) give rise to multipotent progenitors (MPPs) of reduced self-renewal potential and that MPPs eventually produce lineage-committed progenitor cells in a stepwise manner. Using a single-cell transplantation system and marker mice, we unexpectedly found myeloid-restricted progenitors with long-term repopulating activity (MyRPs), which are lineage...

2015
Pengyan Xia Shuo Wang Ying Du Guanling Huang Takashi Satoh Shizuo Akira Zusen Fan

The lineage commitment of HSCs generates balanced myeloid and lymphoid populations in hematopoiesis. However, the underlying mechanisms that control this process remain largely unknown. Here, we show that insulin-insulin receptor (InsR) signaling is required for lineage commitment of multipotent progenitors (MPPs). Deletion of Insr in murine bone marrow causes skewed differentiation of MPPs to ...

Journal: :J. Systems Science & Complexity 2014
Jiang Liu Ming Xu Naijun Zhan Hengjun Zhao

We investigate the termination problems of multi-path polynomial programs (MPPs) with equational loop guards. To establish sufficient conditions for termination and nontermination simultaneously, we first propose the notion of strong/weak non-termination which under/over-approximates non-termination. Based on polynomial ideal theory, we show that the set of all strong non-terminating inputs (SN...

Journal: :Kybernetika 1994
Nicos Karcanias

A number of important control theory problems are involved in the selection of inputoutput schemes of a given system and one family of such problems is referred to as Model Projection Problems (MPP); these problems deal with the selection of effective sets of inputs, outputs out of larger potential sets of inputs, outputs respectively. The aim of this paper is to classify the different types of...

Journal: :Science 2011
Faiyaz Notta Sergei Doulatov Elisa Laurenti Armando Poeppl Igor Jurisica John E Dick

Lifelong blood cell production is dependent on rare hematopoietic stem cells (HSCs) to perpetually replenish mature cells via a series of lineage-restricted intermediates. Investigating the molecular state of HSCs is contingent on the ability to purify HSCs away from transiently engrafting cells. We demonstrated that human HSCs remain infrequent, using current purification strategies based on T...

1998
Takashi Matsumoto Shigeru Uzuhara Kei Hiraki

Recently, di erence between a Massively Parallel Processor and a network of workstations (NOW) almost disappears from hardware point of view. However, current performance of NOWs is still much lower than that of MPPs because of huge overheads of operating systems. Furthermore, both MPPs and current NOWs are not general-purpose because they have not succeeded in giving users (1) a single system ...

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

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

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