SlideShare a Scribd company logo
1 of 29
GENOME CLOUD COMPUTING
By.A.Arputha Selvaraj
Introduction
 The impending collapse of the genome
informatics
 Major sequence-data relateddatabases:
GenBank, EMBL, DDBJ, SRA, GEO, and
ArrayExpress
 Value-added integrators of genomic data:
Ensembl, UCSC Genome Browser, Galaxy,
and many model organism databases.
The old genome informatics ecosystem
Basis for the production and
consumption of genomic information
 Moore's Law: “the number of transistors that
can be placed on an integrated circuit board
is increasing exponentially, with a doubling
time of roughly 18 months.”
 Similar laws for disk storage and network
capacity have also been observed.
 Until now the doubling time for DNA
sequencing was just a bit slower than the
growth of compute and storage capacity.
Historical trends in storage prices vs DNA
sequencing costs
Notice: this is a
logarithmic plot –
exponential
curves appear as
straight lines.
“Next generation” sequencing technologies in the mid-2000s changed the trends and
now threatens the conventional genome informatics ecosystem
Current Situation
 Soon it will cost less to sequence a base of
DNA than to store it on hard disk
 We are facing potential tsunami of genome
data that will swamp our storage system and
crush our compute clusters
 Who is affected:
 Genome sequence repositories who need
maintain and timely update their data
 “Power users” who accustomed to download the
data to local computer for analysis
Cloud Computing
 Cloud computing is a general term for
computation-as-a-service
 Computation-as-a-service means that customers
rent the hardware and the storage only for the
time needed to achieve their goals
 In cloud computing the rentals are virtual
 The service provider implements the
infrastructure to give users the ability to create,
upload, and launch virtual machines on their
extremely large and powerful compute farm.
Virtual Machine
 Virtual machine is software that emulates the properties
of a computer.
 Any operating system can be chosen to run on the
virtual machine and all the tasks we usually perform on
the computer can be performed on virtual machine.
 Virtual machine bootable disk can be stored as an
image. This image can used as a template to start up
multiple virtual machines – launching a virtual compute
cluster is very easy.
 Storing large data sets is usually done with virtual
disks. Virtual disk image can be attached to virtual
machine as local or shared hard drive.
The “new” genome informatics ecosystem
based on cloud computing
Continue to
work with the
data via web-
pages in their
accustomed
way
Have two options:
continue
downloading data
to local clusters as
before, or use
cloud computing –
move the cluster to
the data.
Cloud computing service providers and
their offered services
 Some of the cloud computing service providers are: Amazon
(Elastic Cloud Computing), Rackspace Cloud, Flexiant.
 Amazon offers a variety of bioinformatics-oriented virtual machine
images:
 Images prepopulated by Galaxy
 Bioconductor – programming environment with R statistic package
 GBrowser – genome browser
 BioPerl
 JCVI Cloud BioLinux – collection of bioinformatics tools including
Celera Assembler
 Amazon also provides several large genomic datasets in its cloud:
 Complete copy of GeneBank (200 Gb)
 30x coverage sequencing reads of a trio of individuals from 1000
Genome Project (700Gb)
 Genome databases from Ensembl including annotated human and 50
other species genomes
Cloud computing service providers
from Nature Biotechnology news article “Up in a cloud?”
Academic cloud computing
 Growing number of academic compute cloud
projects are based on open source cloud
management software.
 Open Cloud Consortium is an example of one
such project
Cloud computing disadvantages
 Cost of migrating existing systems into the
new and unfamiliar environment
 Security and privacy of the data
 Need additional level of data encryption
 Need new software that will restrict access to
only authorized users
 Major question: does cloud computing make
economic sense?
Comparing relative costs of renting vs.
buying computational services
 According to technical report on Cloud
Computing by UC Berkeley Reliable Adaptive
Distributed Systems Laboratory
 When all the costs of maintaining a large
compute cluster are considered the cost of
renting a data center from Amazon is marginally
more expensive than buying one.
 When the flexibility of the cloud to support a
virtual data center that downsizes or grows as
needed is factored in, the economics start to look
better
Obstacles in moving toward cloud
computing for genomics
 Network bandwidth – transferring 100 gigabit
next-generation sequencing data file across
10Gb/sec connection will take less than a day
only if hogging much of the institution’s
bandwidth.
 Cloud computing service providers will have to
offer some flexibility in how large datasets get
into system.
By Jaliya Ekanayake, Thilina Gunarathne, and Judy Qui
IEEE transactions on parallel and distributed systems
Cloud Technologies for
Bioinformatics Applications
Motivation for presenting the article
 Exponential increase in the size of datasets
implies that parallelism is essential to process the
information in a timely fashion.
 The algorithms presented in this paper might
reduce computational analysis time significantly
whether used on our own cluster or on rented
Amazon virtual cluster.
 This paper presents a nice example of how these
new parallel computing algorithms can be applied
for bioinformatics
MapReduce
 MapReduce is a software framework introduced by Google to
support distributed computing on large data sets on computer
clusters.
 Users specify a map function that processes a key/value pair to
generate a set of intermediate key/value pairs, and a reduce
function that merges all intermediate values associated with the
same intermediate key.
 Programs written in this functional style are automatically
parallelized and executed on a large cluster of commodity
machines. The run-time system takes care of the details of
partitioning the input data, scheduling the program's execution
across a set of machines, handling machine failures, and managing
the required inter-machine communication. This allows
programmers without any experience with parallel and distributed
systems to easily utilize the resources of a large distributed system.
Tow steps of MapReduce
 Map: The master node takes the input, chops it
up into smaller sub-problems, and distributes
those to worker nodes. The worker node
processes that smaller problem, and passes the
answer back to its master node.
 Reduce: The master node then takes the
answers to all the sub-problems and combines
them in a way to get the output - the answer to
the problem it was originally trying to solve.
MapReduce Illustrations
1
2
3
4
Objectives
 Examine 3 technologies:
 Microsoft Drayd/DryadLINQ
 Apache Hadoop
 Message Passing Interface (MPI)
 These 3 technologies are applied to 2
bioinformatics applications:
 Expressed Sequence Tags (EST)
 Alu clustering
Technolgies
 MPI – The goal of MPI is to provide a widely used
standard for writing message passing programs. MPI is
used in distributed and parallel computing.
 Dryad/DryadLINQ is a distributed execution engine for
coarse grain data parallel applications. It combines the
MapReduce programming style with dataflow graphs to
solve computational problems.
 Apache Hadoop is an open source Java implementation
of MapReduce. Hadoop schedules the MapReduce
computation tasks depending on the data locality.
Bioinformatics applications
 Alu Sequence Classification is one of the most
challenging problems for sequence clustering because
Alus represent the largest repeat families in human
genome. For the specific objectives of the paper an open
source version of the Smith Waterman – Gotoh (SW-G)
algorithm was used.
 EST (Expressed Sequence Tag) corresponds to
messenger RNAs transcribed from genes residing on
chromosomes. Each individual EST sequence represents
a fragment of mRNA, and the EST assembly aims to
reconstruct full-length mRNA sequence for each
expressed gene. Specific implementation used for this
research is CAP3 software.
Scalability of SW-G implementations
Scalability of CAP3 implementations
How different technologies perform on
cloud computing clusters
 The authors were interested to study the overhead of Virtual
Machines for application that use frameworks like Hadoop and
Dryad.
Performance degradation of
Hadoop SWG application on
virtual environment ranges
from 15% to 25%
How different technologies perform on
cloud computing clusters cont’d
The performance degradation in CAP3 remains constant near 20% .
CAP3 application does not show the decrease of VM overhead with the
increase of problem size as with SWG application.
Conclusions
 The flexibility of clouds and MapReduce suggest they will
become the preferred approaches.
 The support for handling large data sets, the concept of
moving computation to data, and the better quality of service
provided by the cloud technologies simplify the
implementation of some problems over traditional systems.
 Experiments showed that DryadLINQ and Hadoop get similar
performance and that virtual machines five overheads of
around 20%.
 The support for inhomogeneous data is important and
currently Hadoop performs better than DryadLINQ.
 MapReduce offer higher level interface and the user needs
less explicit control of the parallelism.
Thank you

More Related Content

What's hot

International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...AtakanAral
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
Task Scheduling methodology in cloud computing
Task Scheduling methodology in cloud computing Task Scheduling methodology in cloud computing
Task Scheduling methodology in cloud computing Qutub-ud- Din
 
Cloud colonography distributed medical testbed over cloud
Cloud colonography distributed medical testbed over cloudCloud colonography distributed medical testbed over cloud
Cloud colonography distributed medical testbed over cloudVenkat Projects
 
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...Frederic Desprez
 
Fault tolerant mechanisms in Big Data
Fault tolerant mechanisms in Big DataFault tolerant mechanisms in Big Data
Fault tolerant mechanisms in Big DataKaran Pardeshi
 
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...IOSR Journals
 
Multicloud Deployment of Computing Clusters for Loosely Coupled Multi Task C...
Multicloud Deployment of Computing Clusters for Loosely  Coupled Multi Task C...Multicloud Deployment of Computing Clusters for Loosely  Coupled Multi Task C...
Multicloud Deployment of Computing Clusters for Loosely Coupled Multi Task C...IOSR Journals
 
IEEE Emerging topic in computing Title and Abstract 2016
IEEE Emerging topic in computing Title and Abstract 2016 IEEE Emerging topic in computing Title and Abstract 2016
IEEE Emerging topic in computing Title and Abstract 2016 tsysglobalsolutions
 
Iaetsd implementation of secure audit process
Iaetsd implementation of secure audit processIaetsd implementation of secure audit process
Iaetsd implementation of secure audit processIaetsd Iaetsd
 
An optimized scientific workflow scheduling in cloud computing
An optimized scientific workflow scheduling in cloud computingAn optimized scientific workflow scheduling in cloud computing
An optimized scientific workflow scheduling in cloud computingDIGVIJAY SHINDE
 
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...AtakanAral
 

What's hot (19)

ICICCE0298
ICICCE0298ICICCE0298
ICICCE0298
 
International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)International Journal of Engineering Research and Development (IJERD)
International Journal of Engineering Research and Development (IJERD)
 
ENERGY EFFICIENT UNEQUAL CLUSTERING ALGORITHM FOR CLUSTERED WIRELESS SENSOR N...
ENERGY EFFICIENT UNEQUAL CLUSTERING ALGORITHM FOR CLUSTERED WIRELESS SENSOR N...ENERGY EFFICIENT UNEQUAL CLUSTERING ALGORITHM FOR CLUSTERED WIRELESS SENSOR N...
ENERGY EFFICIENT UNEQUAL CLUSTERING ALGORITHM FOR CLUSTERED WIRELESS SENSOR N...
 
Coca1
Coca1Coca1
Coca1
 
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...
Modeling and Optimization of Resource Allocation in Cloud [PhD Thesis Progres...
 
vistech2015
vistech2015vistech2015
vistech2015
 
International Journal of Engineering Inventions (IJEI)
International Journal of Engineering Inventions (IJEI)International Journal of Engineering Inventions (IJEI)
International Journal of Engineering Inventions (IJEI)
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
Task Scheduling methodology in cloud computing
Task Scheduling methodology in cloud computing Task Scheduling methodology in cloud computing
Task Scheduling methodology in cloud computing
 
Cloud colonography distributed medical testbed over cloud
Cloud colonography distributed medical testbed over cloudCloud colonography distributed medical testbed over cloud
Cloud colonography distributed medical testbed over cloud
 
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...
Grid'5000: Running a Large Instrument for Parallel and Distributed Computing ...
 
Fault tolerant mechanisms in Big Data
Fault tolerant mechanisms in Big DataFault tolerant mechanisms in Big Data
Fault tolerant mechanisms in Big Data
 
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...
Comparative Analysis, Security Aspects & Optimization of Workload in Gfs Base...
 
Multicloud Deployment of Computing Clusters for Loosely Coupled Multi Task C...
Multicloud Deployment of Computing Clusters for Loosely  Coupled Multi Task C...Multicloud Deployment of Computing Clusters for Loosely  Coupled Multi Task C...
Multicloud Deployment of Computing Clusters for Loosely Coupled Multi Task C...
 
IEEE Emerging topic in computing Title and Abstract 2016
IEEE Emerging topic in computing Title and Abstract 2016 IEEE Emerging topic in computing Title and Abstract 2016
IEEE Emerging topic in computing Title and Abstract 2016
 
Iaetsd implementation of secure audit process
Iaetsd implementation of secure audit processIaetsd implementation of secure audit process
Iaetsd implementation of secure audit process
 
An optimized scientific workflow scheduling in cloud computing
An optimized scientific workflow scheduling in cloud computingAn optimized scientific workflow scheduling in cloud computing
An optimized scientific workflow scheduling in cloud computing
 
Cloud Computing and PSo
Cloud Computing and PSoCloud Computing and PSo
Cloud Computing and PSo
 
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...
Resource Mapping Optimization for Distributed Cloud Services - PhD Thesis Def...
 

Viewers also liked

Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...
Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...
Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...GIANLUCA COPPOLA
 
Vayakhel pekudei 1
Vayakhel pekudei 1Vayakhel pekudei 1
Vayakhel pekudei 1el9360
 
Jbossav formation-jboss-administration-avancee
Jbossav formation-jboss-administration-avanceeJbossav formation-jboss-administration-avancee
Jbossav formation-jboss-administration-avanceeCERTyou Formation
 
Cifocursos2015 sabadell
Cifocursos2015 sabadellCifocursos2015 sabadell
Cifocursos2015 sabadellCop de Mà
 
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...CERTyou Formation
 
Jee008 formation-jee-jsf-java-server-faces
Jee008 formation-jee-jsf-java-server-facesJee008 formation-jee-jsf-java-server-faces
Jee008 formation-jee-jsf-java-server-facesCERTyou Formation
 
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caer
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caerLas personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caer
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caerTACTIO
 
Bmng7312 presentation lu1
Bmng7312 presentation lu1Bmng7312 presentation lu1
Bmng7312 presentation lu1varsitycollege
 
Web intelligence and big data
Web intelligence and big dataWeb intelligence and big data
Web intelligence and big dataRafael Mendes
 
Lirik lagu rukun solat tahun 4
Lirik lagu rukun solat tahun 4Lirik lagu rukun solat tahun 4
Lirik lagu rukun solat tahun 4nurul293
 
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniper
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniperIjos formation-introduction-au-systeme-d-exploitation-junos-juniper
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniperCERTyou Formation
 
Subtração com Pernalonga
Subtração com PernalongaSubtração com Pernalonga
Subtração com PernalongaGracita Fraga
 

Viewers also liked (15)

Resume 2015
Resume 2015Resume 2015
Resume 2015
 
Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...
Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...
Presentation of the project "quadrat" - Quality Assurance Driver for adult tr...
 
Vayakhel pekudei 1
Vayakhel pekudei 1Vayakhel pekudei 1
Vayakhel pekudei 1
 
Jbossav formation-jboss-administration-avancee
Jbossav formation-jboss-administration-avanceeJbossav formation-jboss-administration-avancee
Jbossav formation-jboss-administration-avancee
 
Cifocursos2015 sabadell
Cifocursos2015 sabadellCifocursos2015 sabadell
Cifocursos2015 sabadell
 
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...
Lin05 formation-linux-avance-serveur-d-entreprises-avec-samba-ldap-netfilter-...
 
Jee008 formation-jee-jsf-java-server-faces
Jee008 formation-jee-jsf-java-server-facesJee008 formation-jee-jsf-java-server-faces
Jee008 formation-jee-jsf-java-server-faces
 
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caer
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caerLas personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caer
Las personas emprendedoras son inquietas, ambiciosas y no tienen miedo a caer
 
Bmng7312 presentation lu1
Bmng7312 presentation lu1Bmng7312 presentation lu1
Bmng7312 presentation lu1
 
Web intelligence and big data
Web intelligence and big dataWeb intelligence and big data
Web intelligence and big data
 
Lirik lagu rukun solat tahun 4
Lirik lagu rukun solat tahun 4Lirik lagu rukun solat tahun 4
Lirik lagu rukun solat tahun 4
 
ม.3
ม.3ม.3
ม.3
 
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniper
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniperIjos formation-introduction-au-systeme-d-exploitation-junos-juniper
Ijos formation-introduction-au-systeme-d-exploitation-junos-juniper
 
Subtração com Pernalonga
Subtração com PernalongaSubtração com Pernalonga
Subtração com Pernalonga
 
samir julio
samir juliosamir julio
samir julio
 

Similar to CLOUD BIOINFORMATICS Part1

CloudComputing_UNIT5.pdf
CloudComputing_UNIT5.pdfCloudComputing_UNIT5.pdf
CloudComputing_UNIT5.pdfkhan593595
 
Parallel and distributed system projects for java and dot net
Parallel and distributed system projects for java and dot netParallel and distributed system projects for java and dot net
Parallel and distributed system projects for java and dot netredpel dot com
 
Gridcomputingppt
GridcomputingpptGridcomputingppt
Gridcomputingpptnavjasser
 
A Study on Replication and Failover Cluster to Maximize System Uptime
A Study on Replication and Failover Cluster to Maximize System UptimeA Study on Replication and Failover Cluster to Maximize System Uptime
A Study on Replication and Failover Cluster to Maximize System UptimeYogeshIJTSRD
 
ZCloud Consensus on Hardware for Distributed Systems
ZCloud Consensus on Hardware for Distributed SystemsZCloud Consensus on Hardware for Distributed Systems
ZCloud Consensus on Hardware for Distributed SystemsGokhan Boranalp
 
Computing Outside The Box September 2009
Computing Outside The Box September 2009Computing Outside The Box September 2009
Computing Outside The Box September 2009Ian Foster
 
Application-Aware Big Data Deduplication in Cloud Environment
Application-Aware Big Data Deduplication in Cloud EnvironmentApplication-Aware Big Data Deduplication in Cloud Environment
Application-Aware Big Data Deduplication in Cloud EnvironmentSafayet Hossain
 
Data Analysis In The Cloud
Data Analysis In The CloudData Analysis In The Cloud
Data Analysis In The CloudMonica Carter
 
Paralyzing Bioinformatics Applications Using Conducive Hadoop Cluster
Paralyzing Bioinformatics Applications Using Conducive Hadoop ClusterParalyzing Bioinformatics Applications Using Conducive Hadoop Cluster
Paralyzing Bioinformatics Applications Using Conducive Hadoop ClusterIOSR Journals
 
Ieee transactions on 2018 network and service management
Ieee transactions on 2018 network and service managementIeee transactions on 2018 network and service management
Ieee transactions on 2018 network and service managementtsysglobalsolutions
 
Clustering by AKASHMSHAH
Clustering by AKASHMSHAHClustering by AKASHMSHAH
Clustering by AKASHMSHAHAkash M Shah
 
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...IEEEFINALSEMSTUDENTPROJECTS
 
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...IEEEGLOBALSOFTSTUDENTPROJECTS
 
Qiu bosc2010
Qiu bosc2010Qiu bosc2010
Qiu bosc2010BOSC 2010
 
Cluster Computers
Cluster ComputersCluster Computers
Cluster Computersshopnil786
 

Similar to CLOUD BIOINFORMATICS Part1 (20)

Cluster computing
Cluster computingCluster computing
Cluster computing
 
Grid Computing
Grid ComputingGrid Computing
Grid Computing
 
CloudComputing_UNIT5.pdf
CloudComputing_UNIT5.pdfCloudComputing_UNIT5.pdf
CloudComputing_UNIT5.pdf
 
Parallel and distributed system projects for java and dot net
Parallel and distributed system projects for java and dot netParallel and distributed system projects for java and dot net
Parallel and distributed system projects for java and dot net
 
Gridcomputingppt
GridcomputingpptGridcomputingppt
Gridcomputingppt
 
Eg4301808811
Eg4301808811Eg4301808811
Eg4301808811
 
A Study on Replication and Failover Cluster to Maximize System Uptime
A Study on Replication and Failover Cluster to Maximize System UptimeA Study on Replication and Failover Cluster to Maximize System Uptime
A Study on Replication and Failover Cluster to Maximize System Uptime
 
ZCloud Consensus on Hardware for Distributed Systems
ZCloud Consensus on Hardware for Distributed SystemsZCloud Consensus on Hardware for Distributed Systems
ZCloud Consensus on Hardware for Distributed Systems
 
Computing Outside The Box September 2009
Computing Outside The Box September 2009Computing Outside The Box September 2009
Computing Outside The Box September 2009
 
Application-Aware Big Data Deduplication in Cloud Environment
Application-Aware Big Data Deduplication in Cloud EnvironmentApplication-Aware Big Data Deduplication in Cloud Environment
Application-Aware Big Data Deduplication in Cloud Environment
 
[IJET V2I5P18] Authors:Pooja Mangla, Dr. Sandip Kumar Goyal
[IJET V2I5P18] Authors:Pooja Mangla, Dr. Sandip Kumar Goyal[IJET V2I5P18] Authors:Pooja Mangla, Dr. Sandip Kumar Goyal
[IJET V2I5P18] Authors:Pooja Mangla, Dr. Sandip Kumar Goyal
 
Facade
FacadeFacade
Facade
 
Data Analysis In The Cloud
Data Analysis In The CloudData Analysis In The Cloud
Data Analysis In The Cloud
 
Paralyzing Bioinformatics Applications Using Conducive Hadoop Cluster
Paralyzing Bioinformatics Applications Using Conducive Hadoop ClusterParalyzing Bioinformatics Applications Using Conducive Hadoop Cluster
Paralyzing Bioinformatics Applications Using Conducive Hadoop Cluster
 
Ieee transactions on 2018 network and service management
Ieee transactions on 2018 network and service managementIeee transactions on 2018 network and service management
Ieee transactions on 2018 network and service management
 
Clustering by AKASHMSHAH
Clustering by AKASHMSHAHClustering by AKASHMSHAH
Clustering by AKASHMSHAH
 
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...
2014 IEEE JAVA CLOUD COMPUTING PROJECT Adaptive algorithm for minimizing clou...
 
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...
IEEE 2014 JAVA CLOUD COMPUTING PROJECTS Adaptive algorithm for minimizing clo...
 
Qiu bosc2010
Qiu bosc2010Qiu bosc2010
Qiu bosc2010
 
Cluster Computers
Cluster ComputersCluster Computers
Cluster Computers
 

Recently uploaded

Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...narwatsonia7
 
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...khalifaescort01
 
Top Rated Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...
Top Rated  Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...Top Rated  Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...
Top Rated Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...chandars293
 
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Shimla Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service AvailableDipal Arora
 
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...GENUINE ESCORT AGENCY
 
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Kurnool Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...Sheetaleventcompany
 
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...adilkhan87451
 
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...GENUINE ESCORT AGENCY
 
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...parulsinha
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Dipal Arora
 
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...hotbabesbook
 
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋TANUJA PANDEY
 
Most Beautiful Call Girl in Bangalore Contact on Whatsapp
Most Beautiful Call Girl in Bangalore Contact on WhatsappMost Beautiful Call Girl in Bangalore Contact on Whatsapp
Most Beautiful Call Girl in Bangalore Contact on WhatsappInaaya Sharma
 
Russian Call Girls Service Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...
Russian Call Girls Service  Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...Russian Call Girls Service  Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...
Russian Call Girls Service Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...parulsinha
 
Top Rated Bangalore Call Girls Majestic ⟟ 9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Majestic ⟟  9332606886 ⟟ Call Me For Genuine S...Top Rated Bangalore Call Girls Majestic ⟟  9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Majestic ⟟ 9332606886 ⟟ Call Me For Genuine S...narwatsonia7
 
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Kakinada Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service AvailableDipal Arora
 
Call Girls Guntur Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Guntur  Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Guntur  Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Guntur Just Call 8250077686 Top Class Call Girl Service AvailableDipal Arora
 

Recently uploaded (20)

Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟  9332606886 ⟟ Call Me For G...
Top Rated Bangalore Call Girls Ramamurthy Nagar ⟟ 9332606886 ⟟ Call Me For G...
 
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...
💕SONAM KUMAR💕Premium Call Girls Jaipur ↘️9257276172 ↙️One Night Stand With Lo...
 
Top Rated Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...
Top Rated  Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...Top Rated  Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...
Top Rated Hyderabad Call Girls Chintal ⟟ 9332606886 ⟟ Call Me For Genuine Se...
 
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Shimla Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Shimla Just Call 8617370543 Top Class Call Girl Service Available
 
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
Pondicherry Call Girls Book Now 9630942363 Top Class Pondicherry Escort Servi...
 
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Kurnool Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Kurnool Just Call 8250077686 Top Class Call Girl Service Available
 
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...
Call Girls Service Jaipur {9521753030} ❤️VVIP RIDDHI Call Girl in Jaipur Raja...
 
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...
Russian Call Girls Lucknow Just Call 👉👉7877925207 Top Class Call Girl Service...
 
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...
Call Girls Vasai Virar Just Call 9630942363 Top Class Call Girl Service Avail...
 
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Rishikesh Just Call 8250077686 Top Class Call Girl Service Available
 
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...
Call Girls Service Jaipur {8445551418} ❤️VVIP BHAWNA Call Girl in Jaipur Raja...
 
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
Best Rate (Guwahati ) Call Girls Guwahati ⟟ 8617370543 ⟟ High Class Call Girl...
 
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
Night 7k to 12k Chennai City Center Call Girls 👉👉 7427069034⭐⭐ 100% Genuine E...
 
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
VIP Hyderabad Call Girls Bahadurpally 7877925207 ₹5000 To 25K With AC Room 💚😋
 
Most Beautiful Call Girl in Bangalore Contact on Whatsapp
Most Beautiful Call Girl in Bangalore Contact on WhatsappMost Beautiful Call Girl in Bangalore Contact on Whatsapp
Most Beautiful Call Girl in Bangalore Contact on Whatsapp
 
Russian Call Girls Service Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...
Russian Call Girls Service  Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...Russian Call Girls Service  Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...
Russian Call Girls Service Jaipur {8445551418} ❤️PALLAVI VIP Jaipur Call Gir...
 
Top Rated Bangalore Call Girls Majestic ⟟ 9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Majestic ⟟  9332606886 ⟟ Call Me For Genuine S...Top Rated Bangalore Call Girls Majestic ⟟  9332606886 ⟟ Call Me For Genuine S...
Top Rated Bangalore Call Girls Majestic ⟟ 9332606886 ⟟ Call Me For Genuine S...
 
🌹Attapur⬅️ Vip Call Girls Hyderabad 📱9352852248 Book Well Trand Call Girls In...
🌹Attapur⬅️ Vip Call Girls Hyderabad 📱9352852248 Book Well Trand Call Girls In...🌹Attapur⬅️ Vip Call Girls Hyderabad 📱9352852248 Book Well Trand Call Girls In...
🌹Attapur⬅️ Vip Call Girls Hyderabad 📱9352852248 Book Well Trand Call Girls In...
 
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service AvailableCall Girls Kakinada Just Call 9907093804 Top Class Call Girl Service Available
Call Girls Kakinada Just Call 9907093804 Top Class Call Girl Service Available
 
Call Girls Guntur Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Guntur  Just Call 8250077686 Top Class Call Girl Service AvailableCall Girls Guntur  Just Call 8250077686 Top Class Call Girl Service Available
Call Girls Guntur Just Call 8250077686 Top Class Call Girl Service Available
 

CLOUD BIOINFORMATICS Part1

  • 2. Introduction  The impending collapse of the genome informatics  Major sequence-data relateddatabases: GenBank, EMBL, DDBJ, SRA, GEO, and ArrayExpress  Value-added integrators of genomic data: Ensembl, UCSC Genome Browser, Galaxy, and many model organism databases.
  • 3. The old genome informatics ecosystem
  • 4. Basis for the production and consumption of genomic information  Moore's Law: “the number of transistors that can be placed on an integrated circuit board is increasing exponentially, with a doubling time of roughly 18 months.”  Similar laws for disk storage and network capacity have also been observed.  Until now the doubling time for DNA sequencing was just a bit slower than the growth of compute and storage capacity.
  • 5. Historical trends in storage prices vs DNA sequencing costs Notice: this is a logarithmic plot – exponential curves appear as straight lines. “Next generation” sequencing technologies in the mid-2000s changed the trends and now threatens the conventional genome informatics ecosystem
  • 6. Current Situation  Soon it will cost less to sequence a base of DNA than to store it on hard disk  We are facing potential tsunami of genome data that will swamp our storage system and crush our compute clusters  Who is affected:  Genome sequence repositories who need maintain and timely update their data  “Power users” who accustomed to download the data to local computer for analysis
  • 7. Cloud Computing  Cloud computing is a general term for computation-as-a-service  Computation-as-a-service means that customers rent the hardware and the storage only for the time needed to achieve their goals  In cloud computing the rentals are virtual  The service provider implements the infrastructure to give users the ability to create, upload, and launch virtual machines on their extremely large and powerful compute farm.
  • 8. Virtual Machine  Virtual machine is software that emulates the properties of a computer.  Any operating system can be chosen to run on the virtual machine and all the tasks we usually perform on the computer can be performed on virtual machine.  Virtual machine bootable disk can be stored as an image. This image can used as a template to start up multiple virtual machines – launching a virtual compute cluster is very easy.  Storing large data sets is usually done with virtual disks. Virtual disk image can be attached to virtual machine as local or shared hard drive.
  • 9. The “new” genome informatics ecosystem based on cloud computing Continue to work with the data via web- pages in their accustomed way Have two options: continue downloading data to local clusters as before, or use cloud computing – move the cluster to the data.
  • 10. Cloud computing service providers and their offered services  Some of the cloud computing service providers are: Amazon (Elastic Cloud Computing), Rackspace Cloud, Flexiant.  Amazon offers a variety of bioinformatics-oriented virtual machine images:  Images prepopulated by Galaxy  Bioconductor – programming environment with R statistic package  GBrowser – genome browser  BioPerl  JCVI Cloud BioLinux – collection of bioinformatics tools including Celera Assembler  Amazon also provides several large genomic datasets in its cloud:  Complete copy of GeneBank (200 Gb)  30x coverage sequencing reads of a trio of individuals from 1000 Genome Project (700Gb)  Genome databases from Ensembl including annotated human and 50 other species genomes
  • 11. Cloud computing service providers from Nature Biotechnology news article “Up in a cloud?”
  • 12. Academic cloud computing  Growing number of academic compute cloud projects are based on open source cloud management software.  Open Cloud Consortium is an example of one such project
  • 13. Cloud computing disadvantages  Cost of migrating existing systems into the new and unfamiliar environment  Security and privacy of the data  Need additional level of data encryption  Need new software that will restrict access to only authorized users  Major question: does cloud computing make economic sense?
  • 14. Comparing relative costs of renting vs. buying computational services  According to technical report on Cloud Computing by UC Berkeley Reliable Adaptive Distributed Systems Laboratory  When all the costs of maintaining a large compute cluster are considered the cost of renting a data center from Amazon is marginally more expensive than buying one.  When the flexibility of the cloud to support a virtual data center that downsizes or grows as needed is factored in, the economics start to look better
  • 15. Obstacles in moving toward cloud computing for genomics  Network bandwidth – transferring 100 gigabit next-generation sequencing data file across 10Gb/sec connection will take less than a day only if hogging much of the institution’s bandwidth.  Cloud computing service providers will have to offer some flexibility in how large datasets get into system.
  • 16. By Jaliya Ekanayake, Thilina Gunarathne, and Judy Qui IEEE transactions on parallel and distributed systems Cloud Technologies for Bioinformatics Applications
  • 17. Motivation for presenting the article  Exponential increase in the size of datasets implies that parallelism is essential to process the information in a timely fashion.  The algorithms presented in this paper might reduce computational analysis time significantly whether used on our own cluster or on rented Amazon virtual cluster.  This paper presents a nice example of how these new parallel computing algorithms can be applied for bioinformatics
  • 18. MapReduce  MapReduce is a software framework introduced by Google to support distributed computing on large data sets on computer clusters.  Users specify a map function that processes a key/value pair to generate a set of intermediate key/value pairs, and a reduce function that merges all intermediate values associated with the same intermediate key.  Programs written in this functional style are automatically parallelized and executed on a large cluster of commodity machines. The run-time system takes care of the details of partitioning the input data, scheduling the program's execution across a set of machines, handling machine failures, and managing the required inter-machine communication. This allows programmers without any experience with parallel and distributed systems to easily utilize the resources of a large distributed system.
  • 19. Tow steps of MapReduce  Map: The master node takes the input, chops it up into smaller sub-problems, and distributes those to worker nodes. The worker node processes that smaller problem, and passes the answer back to its master node.  Reduce: The master node then takes the answers to all the sub-problems and combines them in a way to get the output - the answer to the problem it was originally trying to solve.
  • 21. Objectives  Examine 3 technologies:  Microsoft Drayd/DryadLINQ  Apache Hadoop  Message Passing Interface (MPI)  These 3 technologies are applied to 2 bioinformatics applications:  Expressed Sequence Tags (EST)  Alu clustering
  • 22. Technolgies  MPI – The goal of MPI is to provide a widely used standard for writing message passing programs. MPI is used in distributed and parallel computing.  Dryad/DryadLINQ is a distributed execution engine for coarse grain data parallel applications. It combines the MapReduce programming style with dataflow graphs to solve computational problems.  Apache Hadoop is an open source Java implementation of MapReduce. Hadoop schedules the MapReduce computation tasks depending on the data locality.
  • 23. Bioinformatics applications  Alu Sequence Classification is one of the most challenging problems for sequence clustering because Alus represent the largest repeat families in human genome. For the specific objectives of the paper an open source version of the Smith Waterman – Gotoh (SW-G) algorithm was used.  EST (Expressed Sequence Tag) corresponds to messenger RNAs transcribed from genes residing on chromosomes. Each individual EST sequence represents a fragment of mRNA, and the EST assembly aims to reconstruct full-length mRNA sequence for each expressed gene. Specific implementation used for this research is CAP3 software.
  • 24. Scalability of SW-G implementations
  • 25. Scalability of CAP3 implementations
  • 26. How different technologies perform on cloud computing clusters  The authors were interested to study the overhead of Virtual Machines for application that use frameworks like Hadoop and Dryad. Performance degradation of Hadoop SWG application on virtual environment ranges from 15% to 25%
  • 27. How different technologies perform on cloud computing clusters cont’d The performance degradation in CAP3 remains constant near 20% . CAP3 application does not show the decrease of VM overhead with the increase of problem size as with SWG application.
  • 28. Conclusions  The flexibility of clouds and MapReduce suggest they will become the preferred approaches.  The support for handling large data sets, the concept of moving computation to data, and the better quality of service provided by the cloud technologies simplify the implementation of some problems over traditional systems.  Experiments showed that DryadLINQ and Hadoop get similar performance and that virtual machines five overheads of around 20%.  The support for inhomogeneous data is important and currently Hadoop performs better than DryadLINQ.  MapReduce offer higher level interface and the user needs less explicit control of the parallelism.