An Ultrafast Scalable Many-Core Motif Discovery Algorithm for Multiple Gpus

Total Page:16

File Type:pdf, Size:1020Kb

An Ultrafast Scalable Many-Core Motif Discovery Algorithm for Multiple Gpus 2011 IEEE International Parallel & Distributed Processing Symposium An Ultrafast Scalable Many-core Motif Discovery Algorithm for Multiple GPUs Yongchao Liu, Bertil Schmidt, Douglas L. Maskell School of Computer Engineering Nanyang Technological University Singapore e-mail: {liuy0039, asbschmidt, asdouglas}@ntu.edu.sg Abstract—The identification of genome-wide transcription matching models, such as word enumeration [3] and factor binding sites is a fundamental and crucial problem to dictionary methods [4]. fully understand the transcriptional regulatory processes. MEME [5] is a popular and well established motif However, the high computational cost of many motif discovery discovery algorithm, which is primarily comprised of the algorithms heavily constraints their application for large-scale starting point search (SPS) stage and the EM stage. datasets. The rapid growth of genomic sequences and gene However, the high computational cost of MEME constrains transcription data further deteriorates the situation and its application for large-scale datasets, such as motif establishes a strong requirement for time-efficient scalable identification in whole peak regions from ChIP-Seq datasets motif discovery algorithms. The emergence of many-core for transcription factor binding experiments [6]. This architectures, typically CUDA-enabled GPUs, provides an encourages the use of high-performance computing solutions opportunity to reduce the execution time by an order of magnitude without the loss of accuracy. In this paper, we to meet the execution time requirement. Several attempts present mCUDA-MEME, an ultrafast scalable many-core have been made to improve execution speed on conventional motif discovery algorithm for multiple GPUs based on the computing systems, including distributed-memory MEME algorithm. Our algorithm is implemented using a workstation clusters [7] and special-purpose hardware [8]. hybrid combination of the CUDA, OpenMP and MPI parallel The emerging many-core architectures, typically Compute programming models in order to harness the powerful Unified Device Architecture (CUDA)-enabled GPUs [9], compute capability of modern GPU clusters. At present, our have demonstrated their power for accelerating algorithm supports OOPS and ZOOPS models, which are bioinformatics algorithms [10] [11] [12] [13]. This convinces sufficient for most motif discovery applications. mCUDA- us to employ CUDA-enabled GPUs to accelerate motif MEME achieves significant speedups for the starting point discovery. Previously we have presented CUDA-MEME, search stage (and the overall execution) when benchmarked, based on MEME version 3.5.4, for a single GPU device using real datasets, against parallel MEME running on 32 which accelerates motif discovery using two parallelization CPU cores. Speedups of up to 1.4 (1.1) on a single GPU of a approaches, namely: sequence-level parallelization and Fermi-based Tesla S2050 quad-GPU computing system and up substring-level parallelization. The detailed implementations to 10.8 (8.3) on the eight GPUs of a two Tesla S2050 system of the two approaches have been described in [14]. were observed. Furthermore, our algorithm shows good However, the increasing size and availability of ChIP- scalability with respect to dataset size and the number of GPUs Seq datasets established the need for parallel motif discovery (availability:https://sites.google.com/site/yongchaosoftware/mc with even higher performance. Therefore in this paper, we uda-meme). present mCUDA-MEME, an ultrafast scalable many-core Motif discovery; MEME; CUDA; MPI; OpenMP; GPU motif discovery algorithm for multiple GPUs. Our algorithm is designed based on MEME version 4.4.0 which incorporates position-specific priors (PSP) to improve I. INTRODUCTION accuracy [15]. In order to harness the powerful compute De novo motif discovery is crucial to the complete capability of GPU clusters, we employ a hybrid combination understanding of transcription regulatory processes by of CUDA, Open Multi-Processing (OpenMP) and Message identifying transcription factor binding sites (TFBSs) on a Passing Interface (MPI) parallel programming models to genome-wide scale. Algorithmic approaches for motif implement this algorithm. Compared to CUDA-MEME, discovery can be classified into two categories: iterative and mCUDA-MEME introduces four new significant features: combinatorial. Iterative approaches generally exploit • Supports multiple GPUs in a single host or a GPU probabilistic matching models, such as Expectation cluster through a MPI-based design; Maximization (EM) [1] and Gibbs sampling [2]. These • Supports starting point search from the reverse approaches are often preferred because they use position- complements of DNA sequences; specific scoring matrices to describe the matching between a • Employs multi-threaded design using OpenMP to motif instance and a sequence, instead of a simple Hamming accelerate the EM stage; distance. Combinatorial approaches employ deterministic • Incorporates PSP prior probabilities to improve accuracy. 1530-2075/11 $26.00 © 2011 IEEE 427423 DOI 10.1109/IPDPS.2011.183 Since the sequence-level parallelization is advantageous motif models with the highest weighted log likelihood ratio to the substring-level parallelization in execution speed [14], are selected as starting points for the successive EM our following discussions only refer to the sequence-level algorithm. parallelization. Real datasets are employed to evaluate the When performing the starting point search, independent performance of mCUDA-MEME and parallel MEME (i.e. computation from each substring of length w in the dataset the MPI version of MEME distributed with the MEME S={S1, S2, ..., Sn} of n input sequences is conducted to software package). Compared to parallel MEME (version determine a set of initial motif models. The following 4.4.0) running on 32 CPU cores, mCUDA-MEME achieves notations are used for the convenience of discussion: li a speedup of the starting point search stage (and the overall denotes the length of Si, S̅ i denotes the reverse complement execution) of up to 1.4 (1.1) times on a single GPU of a of Si, Si,j denotes the substring of length w starting from Fermi-based Tesla S2050 quad-GPU computing system and position j of Si, Si(j) denotes the j-th letter of Si, where 1 ≤ i ≤ up to 10.8 (8.3) times on eight GPUs of a two Tesla S2050 n and 0 ≤ j ≤ li-w. The starting point search process is system. Furthermore, our algorithm shows good scalability primarily comprised of three steps for the OOPS and ZOOPS with respect to dataset size and the number of GPUs. models: The rest of this paper is organized as follows. Section 2 • Calculate the probability score P(Si,j, Sk,l) from the briefly introduces the MEME algorithm and the CUDA, forward strand (or P(Si,j, S̅ k,l) from the reverse OpenMP and MPI parallel programming models. Section 3 complement), which is the probability that a site details the new features of mCUDA-MEME. Section 4 starts at position l in Sk when a site starts at position j evaluates the performance using real datasets, and Section 5 in Si. The time complexity is O(li·lk) for each concludes this paper. sequence pair Si and Sk. • Identify the highest-scoring substring Sk,maxk (as well II. BACKGROUND as its strand orientation) for each Sk. The time complexity is O(l ) for each sequence S . A. The MEME Algorithm k k • Sort the n highest-scoring substrings {Sk,maxk} in Given a set of protein or DNA sequences, MEME decreasing order of scores and determine the attempts to search for statistically significant (unknown) potential starting points. The time complexity is motif occurrences, which are believed to be shared in the O(nlogn) for OOPS and O(n2w) for ZOOPS. sequences, by optimizing the parameters of statistical motif The probability score P(Si,j, Sk,l) is computed as: models using the EM approach. MEME provides support for three types of search modes: one occurrence per sequence w-1 (OOPS), zero or one occurrence per sequence (ZOOPS), and PS(ij,, , S kl )=++∑ matS [ i ( j p )][ S k ( l p )] (2) two component mixture (TCM). The OOPS model postulates p=0 that there is exactly one motif occurrence per sequence in the dataset, the ZOOPS model postulates zero or one motif where mat denotes the letter frequency matrix of size |Σ|×|Σ|. occurrence per sequence, and the TCM model postulates that To reduce computation redundancy, (2) can be further there can be any number of non-overlapping occurrences per simplified to (3), where the computation of the probability sequence [5]. Since the OOPS and ZOOPS models are scores {P(Si,j, Sk,l)} in the j-th iteration depends on the sufficient for most motif finding applications, our algorithm resulting scores {P(Si,j-1, Sk,l-1)} in the (j-1)-th iteration. in this paper concentrates on these two models. However, P(Si,j, Sk,0) needs to be computed individually MEME begins a motif search with the creation of a set of using (2). motif models. Each motif model θ is a position specific probability matrix representing frequency estimates of letters PS(ij,, , S kl )= PS ( ij ,1,1−− , S kl )++−+− matS [ i ( j w 1)][ S k ( l w 1)] occurring in different positions. Given a motif of width w -mat [ Sik ( j−− 1)][ S ( l 1)] defined over an alphabet Σ = {A1, A2, ... , A|Σ|}, each value (3) θ(i, j) (1≤ i ≤ |Σ| and 0≤ j ≤w) of the matrix is defined as: B. The CUDA Programming Model probability of A at position jjw of the motif, 1 ≤ ≤ ⎧ i More than a software and hardware co-processing θ (,ij )= ⎨ (1) ⎩probability of Aji not in the motif, = 0 architecture, CUDA is also a parallel programming language extending general programming languages, such as C, C++ A starting point is an initial motif model θ(0) from which and Fortran with a minimalist set of abstractions for the EM stage runs for a fixed number of iterations, or until expressing parallelism.
Recommended publications
  • In Silico Docking Analysis of CCL28 (CC Motif Chemokine Ligand
    F1000Research 2019, 8:313 Last updated: 21 SEP 2021 RESEARCH ARTICLE In silico docking analysis of CCL28 (C-C motif chemokine ligand 28) and astragalin as the potential inhibitor of rheumatoid arthritis [version 1; peer review: 1 approved, 1 approved with reservations] Sadaf Noor, Syeda Tahira Qousain, Syed Aun Muhammad Institute of Molecular Biology and Biotechnology, Bahauddin Zakariya University, Multan, Punjab, 60800, Pakistan v1 First published: 20 Mar 2019, 8:313 Open Peer Review https://doi.org/10.12688/f1000research.18541.1 Latest published: 20 Mar 2019, 8:313 https://doi.org/10.12688/f1000research.18541.1 Reviewer Status Invited Reviewers Abstract Background: Rheumatoid arthritis is an inflammatory and chronic 1 2 disease of the joints affecting 1% of the world’s population. Women are three times more likely to be affected than men. Many drugs are version 1 being used for the treatment of rheumatoid arthritis but they often 20 Mar 2019 report report have severe side effects. C-C motif chemokine ligand 28 (CCL28) recruits leukocytes and other proinflammatory factors to the site of 1. Ihsan Ul Haq, Quaid-i-Azam University, joint inflammation. The purpose of the present research is the computational evaluation of astragalin, a natural flavonoid extracted Islamabad, Pakistan from black tea, as an inhibitor of CCL28 by in silico docking. 2. Sagarika Biswas, Institute of Genomics and Methods: The three-dimensional structure of CCL28 to act as a molecular target was obtained from the Protein Data Bank (PDB ID: Integrative Biology, New Delhi, India 6CWS). The quality of the CCL28 structure was assessed using Phyre2 and Molecular Operating Environment (MOE) software was used for Any reports and responses or comments on the binding affinity analysis.
    [Show full text]
  • IP Log for Eclipse.Platform Release 4.0, July 2010 Licenses
    IP Log for eclipse.platform Release 4.0, July 2010 Licenses • Eclipse Public License v1.0 Third-Party Code CQ Third-Party Code License Use ICU4J (core and extended ICU4J License (X License, 1065 function) and ICU4J MIT Style) Replacement plug-in Version: 3.6 ICU4J License (X License, 1116 ICU4J Version: 3.4.5.20061213 MIT Style) 1153 JSch 0.1.31 Version: 0.1.31 New BSD license Apache Lucene Version: 1.9.1 243 (Core+Contrib Analyzers Apache License, 2.0 Analysis Src) 257 APT Version: 1 New BSD license Mozilla Public License 1.1 (MPL), MIT Style with No 262 Cairo Version: 1.0.2 Endorsement Clause, Historical Permissive Notice & Disclaimer ICU4J License (X License, 280 ICU4J Version: 3.4 MIT Style) ICU4J License (X License, 281 ICU4J Version: 3.4.3 MIT Style) 293 jsch Version: 0.1.28 New BSD license 308 PNG unload Version: 1 MIT license 1232 Apache Ant Version: 1.7.0 Apache License, 2.0 ICU4J and ICU4J Replacement ICU4J License (X License, 1367 Version: 3.6.1 MIT Style) Olsen time zone data Version: 1368 Public Domain 2007e Work derived from IJG JPEG 1596 IJG License Version: Release 6b,337 unmodified 1826 JSch 0.1.35 New BSD license source & binary ICU4J and ICU4J replacement MIT License with "no unmodified 1919 Version: 3.8.1 edorsement" clause source & binary unmodified 2014 jsch Version: 0.1.37 New BSD license source & binary XHTML DTDs Version: unmodified 2044 W3C Document License Versions 1.0 and 1.1 (PB CQ331) source org.apache.ant Version: 1.6.5 2404 (ATO CQ1013) (using Orbit Apache License, 2.0 CQ2209) org.apache.lucene Version: 1.4.3 2405 (Core Source Only) (ATO Apache License, 2.0 CQ1014) (using Orbit CQ2210) Junit Version: 3.8.2 (ATO 2406 Common Public License 1.0 CQ299) (using Orbit CQ2206) Historical support for Java SSH modified 2410 Applet + Blowfish Version - v.
    [Show full text]
  • The GNOME Desktop Environment
    The GNOME desktop environment Miguel de Icaza ([email protected]) Instituto de Ciencias Nucleares, UNAM Elliot Lee ([email protected]) Federico Mena ([email protected]) Instituto de Ciencias Nucleares, UNAM Tom Tromey ([email protected]) April 27, 1998 Abstract We present an overview of the free GNU Network Object Model Environment (GNOME). GNOME is a suite of X11 GUI applications that provides joy to users and hackers alike. It has been designed for extensibility and automation by using CORBA and scripting languages throughout the code. GNOME is licensed under the terms of the GNU GPL and the GNU LGPL and has been developed on the Internet by a loosely-coupled team of programmers. 1 Motivation Free operating systems1 are excellent at providing server-class services, and so are often the ideal choice for a server machine. However, the lack of a consistent user interface and of consumer-targeted applications has prevented free operating systems from reaching the vast majority of users — the desktop users. As such, the benefits of free software have only been enjoyed by the technically savvy computer user community. Most users are still locked into proprietary solutions for their desktop environments. By using GNOME, free operating systems will have a complete, user-friendly desktop which will provide users with powerful and easy-to-use graphical applications. Many people have suggested that the cause for the lack of free user-oriented appli- cations is that these do not provide enough excitement to hackers, as opposed to system- level programming. Since most of the GNOME code had to be written by hackers, we kept them happy: the magic recipe here is to design GNOME around an adrenaline response by trying to use exciting models and ideas in the applications.
    [Show full text]
  • A Highly Interactive Expert System for Outside Plant Engineering
    From: IAAI-93 Proceedings. Copyright © 1993, AAAI (www.aaai.org). All rights reserved. OPERA: A Highly Interactive Expert System for Outside Plant Engineering Gary Lazarus, Lien ‘Ihn and Marty Baade Expert Systems Laboratory NYNEX Science & Technology 500 Westchester Avenue White Plains, NY 10604 [email protected] Abstract system that contains more engineering expertise than OPERA is an expert system developed at the Expert any single engineer in the telephone companies. Systems Laboratory at NYNEX Science & Technology to As is the case in most high technology fields, assist outside plant telecommunications engineers in the outside plant engineers routinely see new products, or planning and implementation of sophisticated electronic refinements and enhancements to existing ones. The equipment. The engineer communicates with the system via underlying first order principles of engineering are intelligent documents that are schematic in their design and complex and not necessarily fully understood by all dynamic in their operation to facilitate the conveyance of necessary and sufficient information. Expertise from the top engineers charged with the responsibility of turning up experts in the company was culled and built into the system working systems. Engineers who immerse themselves in to create an expert system that surpasses the engineering the latest technology can perform very well. But, the knowledge of any single engineer in the company. The effort required to maintain that ability is significant. domain and project objectives are discussed, the system OPERA (Outside Plant Engineering and Resource architecture and development, testing, deployment and Administration), therefore, must provide a reasoning maintenance issues are presented and the use of artificial mechanism that emulates the best engineers and be intelligence techniques is justified.
    [Show full text]
  • Testing X/Motif Applications
    TTeessttiinngg XX//MMoottiiff AApppplliiccaattiioonnss Achieving Quality Goals Through Automated GUI Testing Integrated Computer Solutions Incorporated The User Interface Company™ Phone: 617.621.0060 Email: [email protected] www.ics.com Automated Testing of X-Window Applications Choosing the Ideal Tool for Automated GUI Testing Table of Contents Overview............................................................................................................................. 3 The importance of GUI testing ........................................................................................... 3 Exploratory testing.......................................................................................................... 3 Regression testing ........................................................................................................... 3 Boundary testing ............................................................................................................. 4 Stress testing ................................................................................................................... 4 GUI Testing Tools .............................................................................................................. 4 Developing initial GUI tests ............................................................................................... 5 Using a GUI test tool during exploration............................................................................ 6 Basic scripting....................................................................................................................
    [Show full text]
  • Decwindows Motif for Openvms Installation Guide
    VSI OpenVMS DECwindows Motif for OpenVMS Installation Guide Document Number: DO-DDWINS-01A Publication Date: October 2019 Revision Update Information: This is a new manual. Operating System and Version: VSI OpenVMS Integrity Version 8.4-1H1 VSI OpenVMS Alpha Version 8.4-2L1 Software Version: DECwindows Motif for OpenVMS Version 1.7F VMS Software, Inc., (VSI) Bolton, Massachusetts, USA DECwindows Motif for OpenVMS Installation Guide Copyright © 2019 VMS Software, Inc. (VSI), Bolton, Massachusetts, USA Legal Notice Confidential computer software. Valid license from VSI required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for VSI products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. VSI shall not be liable for technical or editorial errors or omissions contained herein. HPE, HPE Integrity, HPE Alpha, and HPE Proliant are trademarks or registered trademarks of Hewlett Packard Enterprise. The VSI OpenVMS documentation set is available on DVD. ii DECwindows Motif for OpenVMS Installation Guide Preface ....................................................................................................................................
    [Show full text]
  • Multiplatformní GUI Toolkity GTK+ a Qt
    Multiplatformní GUI toolkity GTK+ a Qt Jan Outrata KATEDRA INFORMATIKY UNIVERZITA PALACKÉHO V OLOMOUCI GUI toolkit (widget toolkit) (1) = programová knihovna (nebo kolekce knihoven) implementující prvky GUI = widgety (tlačítka, seznamy, menu, posuvník, bary, dialog, okno atd.) a umožňující tvorbu GUI (grafického uživatelského rozhraní) aplikace vlastní jednotný nebo nativní (pro platformu/systém) vzhled widgetů, možnost stylování nízkoúrovňové (Xt a Xlib v X Windows System a libwayland ve Waylandu na unixových systémech, GDI Windows API, Quartz a Carbon v Apple Mac OS) a vysokoúrovňové (MFC, WTL, WPF a Windows Forms v MS Windows, Cocoa v Apple Mac OS X, Motif/Lesstif, Xaw a XForms na unixových systémech) multiplatformní = pro více platforem (MS Windows, GNU/Linux, Apple Mac OS X, mobilní) nebo platformově nezávislé (Java) – aplikace může být také (většinou) událostmi řízené programování (event-driven programming) – toolkit v hlavní smyčce zachytává události (uživatelské od myši nebo klávesnice, od časovače, systému, aplikace samotné atd.) a umožňuje implementaci vlastních obsluh (even handler, callback function), objektově orientované programování (objekty = widgety aj.) – nevyžaduje OO programovací jazyk! Jan Outrata (Univerzita Palackého v Olomouci) Multiplatformní GUI toolkity duben 2015 1 / 10 GUI toolkit (widget toolkit) (2) language binding = API (aplikační programové rozhraní) toolkitu v jiném prog. jazyce než původní API a toolkit samotný GUI designer/builder = WYSIWYG nástroj pro tvorbu GUI s využitím toolkitu, hierarchicky skládáním prvků, z uloženého XML pak generuje kód nebo GUI vytvoří za běhu aplikace nekomerční (GNU (L)GPL, MIT, open source) i komerční licence např. GTK+ (C), Qt (C++), wxWidgets (C++), FLTK (C++), CEGUI (C++), Swing/JFC (Java), SWT (Java), JavaFX (Java), Tcl/Tk (Tcl), XUL (XML) aj.
    [Show full text]
  • Pygtk 2.0 Tutorial
    PyGTK 2.0 Tutorial John Finlay October 7, 2012 PyGTK 2.0 Tutorial by John Finlay Published March 2, 2006 ii Contents 1 Introduction 1 1.1 Exploring PyGTK . .2 2 Getting Started 5 2.1 Hello World in PyGTK . .7 2.2 Theory of Signals and Callbacks . .9 2.3 Events . 10 2.4 Stepping Through Hello World . 11 3 Moving On 15 3.1 More on Signal Handlers . 15 3.2 An Upgraded Hello World . 15 4 Packing Widgets 19 4.1 Theory of Packing Boxes . 19 4.2 Details of Boxes . 20 4.3 Packing Demonstration Program . 22 4.4 Packing Using Tables . 27 4.5 Table Packing Example . 28 5 Widget Overview 31 5.1 Widget Hierarchy . 31 5.2 Widgets Without Windows . 34 6 The Button Widget 35 6.1 Normal Buttons . 35 6.2 Toggle Buttons . 38 6.3 Check Buttons . 40 6.4 Radio Buttons . 42 7 Adjustments 45 7.1 Creating an Adjustment . 45 7.2 Using Adjustments the Easy Way . 45 7.3 Adjustment Internals . 46 8 Range Widgets 49 8.1 Scrollbar Widgets . 49 8.2 Scale Widgets . 49 8.2.1 Creating a Scale Widget . 49 8.2.2 Methods and Signals (well, methods, at least) . 50 8.3 Common Range Methods . 50 8.3.1 Setting the Update Policy . 50 8.3.2 Getting and Setting Adjustments . 51 8.4 Key and Mouse Bindings . 51 8.5 Range Widget Example . 51 9 Miscellaneous Widgets 57 9.1 Labels . 57 9.2 Arrows . 60 9.3 The Tooltips Object .
    [Show full text]
  • Building a 3D Graphic User Interface in Linux
    Freescale Semiconductor Document Number: AN4045 Application Note Rev. 0, 01/2010 Building a 3D Graphic User Interface in Linux Building Appealing, Eye-Catching, High-End 3D UIs with i.MX31 by Multimedia Application Division Freescale Semiconductor, Inc. Austin, TX To compete in the market, apart from aesthetics, mobile Contents 1. X Window System . 2 devices are expected to provide simplicity, functionality, and 1.1. UI Issues . 2 elegance. Customers prefer attractive mobile devices and 2. Overview of GUI Options for Linux . 3 expect new models to be even more attractive. For embedded 2.1. Graphics Toolkit . 3 devices, a graphic user interface is essential as it enhances 2.2. Open Graphics Library® . 4 3. Clutter Toolkit - Solution for GUIs . 5 the ease of use. Customers expect the following qualities 3.1. Features . 5 when they use a Graphical User Interface (GUI): 3.2. Clutter Overview . 6 3.3. Creating the Scenegraph . 7 • Quick and responsive feedback for user actions that 3.4. Behaviors . 8 clarifies what the device is doing. 3.5. Animation by Frames . 9 • Natural animations. 3.6. Event Handling . 10 4. Conclusion . 10 • Provide cues, whenever appropriate, instead of 5. Revision History . 11 lengthy textual descriptions. • Quick in resolving distractions when the system is loading or processing. • Elegant and beautiful UI design. This application note provides an overview and a guide for creating a complex 3D User Interface (UI) in Linux® for the embedded devices. © Freescale Semiconductor, Inc., 2010. All rights reserved. X Window System 1 X Window System The X Window system (commonly X11 or X) is a computer software system and network protocol that implements X display protocol and provides windowing on bitmap displays.
    [Show full text]
  • Motif to Qt Migration
    BUILDING SMART SOLUTIONS THAT CREATE BUSINESS IMPACT Motif has been the standard for ages, but it’s now 30 years old and there aren’t many experts left INTRODUCTION If you’re among the business owners that don't invest much in software and hard- ware innovation, because their current setup "still works", we should let you know that’s a risky choice. Technology ages so quickly that it becomes outdated in a matter of years. It will gradually become harder for you to keep supporting and scaling software that was written using legacy technologies, as engineers who were once experts in the field are now close to retirement. Not having avail- able workforce to maintain your existing systems and set you up for the future, is a recipe for disaster. And if your company's information technology assets are un- available for a day that could result in huge loss - both in profit and market share. Besides aging technology, there are other factors to be considered. Surely your company relies on some kind of third party applications and tools that are also compatible with others. What happens if the vendors cease to offer this compati- bility or go out of business, consequently stopping updates and support for the 2 application? Situations like that make it worth for you to consider initiating a migration project: migration from one system to another, migration of software systems to new hardware, migration from one setup to another setup, etc. Migration is not a simple decision to make - your engineering team might prefer one technology over the other; or the newly chosen technology might offer you something that the one currently in use doesn't.
    [Show full text]
  • RBFOX3 Promotes Gastric Cancer Growth and Progression Through
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 16 April 2020 doi:10.20944/preprints202004.0264.v1 RBFOX3 Promotes Gastric Cancer Growth and Progression through Activating HTERT Signaling Chen Luo#1,2,3, Xiaojian Zhu#1,2,3, Qilin Luo1, Fanqin Bu1,2,3, Chao Huang1,2,3, Jingfeng Zhu1,2,3, Jiefeng Zhao1,2,3, Wenjun Zhao1,2,3, Kang Lin1,2,3, Cegui Hu2,3, Zong Zeng1,3, Hongliang Luo1,3, Jun Huang1, Zhengming Zhu1 1Department of General Surgery, The Second Affiliated Hospital of Nanchang University,Nanchang, China. 2Jiangxi Medical College of Nanchang University,Nanchang, China. 3Jiangxi Province Key Laboratory of Molecular Medicine, Nanchang, China. #Chen Luo#1,2,3 and Xiaojian Zhu#1,2,3 contributed equally to this work. Correspondence: *Zhengming Zhu, Department of General Surgery, The Second Affiliated Hospital of Nanchang University, Nanchang 330006, China. Email: [email protected]. *Xiaojian Zhu, Department of General Surgery, The Second Affiliated Hospital of Nanchang University, Nanchang 330006, China. Email: [email protected]. *Zhengming Zhu and Xiaojian Zhu are co-corresponding authors. Abstract Tumor invasion, metastasis, and recrudesce remain a considerable challenge in the treatment of gastric cancer (GC). Herein, we first identified that RBFOX3 (RNA binding protein fox-1 homolog 3) was significantly up-regulated in GC tissues and negatively linked to the survival rate of GC patients. RBFOX3 promoted cell division and cell cycle progression in vitro as well as in vivo. Furthermore, RBFOX3 increased cell invasion and migration ability. Interestingly, both the suppression of GC cell multiplication and invasion moderated by the silencing of RBFOX3 was rescued by HTERT up-regulation.
    [Show full text]
  • TOOLS for MOTIF-RACK Installation Guide / Installationshandbuch / Manuel D’Installation
    TOOLS for MOTIF-RACK Installation Guide / Installationshandbuch / Manuel d’installation SPECIAL NOTICES • The software and this Installation Guide are exclusive copyrights of Yamaha Corporation. • Use of the software and this guide is governed by the SOFTWARE LICENSING AGREEMENT which the purchaser fully agrees to upon English breaking the seal of the software packaging. (Please read carefully the AGREEMENT at the end of this guide before installing the application.) • Copying of the software or reproduction of this guide in whole or in part by any means is expressly forbidden without the written consent of the manufacturer. •Yamaha makes no representations or warranties with regard to the use of the software and documentation and cannot be held responsible for the results of the use of this guide and the software. • Copying of the commercially available music data is strictly prohibited except for your personal use. • The company names and product names in this Installation Guide are the trademarks or registered trademarks of their respective companies. • Future upgrades of application and system software and any changes in specifications and functions will be announced separately. Deutsch BESONDERE HINWEISE • Dieses Programm und diese Installationsanleitung sind im Sinne des Urheberrechts alleiniges Eigentum der Yamaha Corporation. • Die Benutzung des Programms und dieser Anleitung unterliegt der SOFTWARE-LIZENZVEREINBARUNG, mit der sich der Erwerber durch Öffnen des Siegels der Programmverpackung uneingeschränkt einverstanden erklärt. (Bitte lesen Sie die VEREINBARUNG am Ende dieser Anleitung vor Installation der Anwendung sorgfältig durch.) • Das Kopieren der Software und die Reproduktion dieser Anleitung, in welcher Form auch immer, in Teilen oder als Ganzes, sind nur mit Français schriftlicher Genehmigung des Herstellers erlaubt und sonst ausdrücklich verboten.
    [Show full text]