Sunday, April 26, 2020

Real Life Example for Money Rules the World free essay sample

With the advent of the World Wide Web and fast Internet connections, the data contained in these databases and a great many special-purpose programs can be accessed quickly, easily, and cheaply from any location in the world. As a consequence, computer-based tools now play an increasingly critical role in the advancement of biological research. Bioinformatics, a rapidly evolving discipline, is the application of computational tools and techniques to the management and analysis of biological data. The term bioinformatics is relatively new, and as defined here, it encroaches on such terms as computational biology and others. The use of computers in biology research predates the term bioinformatics by many years. For example, the determination of 3D protein structure from X-ray crystallographic data has long relied on computer analysis. In this book I refer to the use of computers in biological research as bioinformatics. Its important to be aware, however, that others may make different distinctions between the terms. We will write a custom essay sample on Real Life Example for Money Rules the World or any similar topic specifically for you Do Not WasteYour Time HIRE WRITER Only 13.90 / page In particular, bioinformatics is often the term used when referring to the data and the techniques used in large-scale sequencing and analysis of entire genomes, such as C. elegans, Arabidopsis, and Homo sapiens. What Bioinformatics Can Do Heres a short example of bioinformatics in action. Lets say you have discovered a very interesting segment of mouse DNA and you suspect it may hold a clue to the IT-SC 4 development of fatal brain tumors in humans. After sequencing the DNA, you perform a search of Genbank and other data sources using web-based sequence alignment tools such as BLAST. Although you find a few related sequences, you dont get a direct match or any information that indicates a link to the brain tumors you suspect exist. You know that the public genetic databases are growing daily and rapidly. You would like to perform your searches every day, comparing the results to the previous searches, to see if anything new appears in the databases. But this could take an hour or two each day! Luckily, you know Perl. With a days work, you write a program (using the Bioperl module among other things) that automatically conducts a daily BLAST search of Genbank for your DNA sequence, compares the results with the previous days results, and sends you email if there has been any change. This program is so useful that you start running it for other sequences as well, and your colleagues also start using it. Within a few months, your days worth of work has saved many weeks of work for your community. This example is taken from real life. There are now existing programs you can use for this purpose, even web sites where you can submit your DNA sequence and your email address, and theyll do all the work for you! This is only a small example of what happens when you apply the power of computation to a biological problem. This is bioinformatics. About This Book This book is a tutorial for biologists on how to program, and is designed for beginning programmers. The examples and exercises with only a few exceptions use biological data. The books goal is twofold: it teaches programming skills and applies them to interesting biological areas. I want to get you up and programming as quickly and painlessly as possible. I aim for simplicity of explanation, not completeness of coverage. I dont always strictly define the programming concepts, because formal definitions can be distracting. The Perl language makes it possible to start writing real programs quickly. As you continue reading this book and the online Perl documentation, youll fill in the details, learn better ways of doing things, and improve your understanding of programming concepts. Depending on your style of learning, you can approach this material in different ways. One way, as the King gravely said to Alice, is to Begin at the beginning and go on till you come to the end: then stop. (This line from Alice in Wonderland is often used as a whimsical definition of an algorithm. ) The material is organized to be read in this fashion, as a narrative. Another approach is to get the programs into your computer, run them, see what they do, and perhaps try to alter this or that in the program to see what effect your changes have. This may be combined with a quick skim of the text of the chapter. This is a common approach used by programmers when learning a new language. Basically, you learn by imitation, looking at actual programs. IT-SC 5 Anyone wishing to learn Perl programming for bioinformatics should try the exercises found at the end of most chapters. They are given in approximate order of difficulty, and some of the higher-numbered exercises are fairly challenging and may be appropriate for classroom projects. Because theres more than one way to do things in Perl, there is no one correct answer to an exercise. If youre a beginning programmer, and you manage to solve an exercise in any way whatsoever, youve succeeded at that exercise. My exercises may be found at suggested solutions to the http://www. oreilly. com/catalog/begperlbio. I hope that the material in this book will serve not only as a practical tutorial, but also as a first step to a research program if you decide that bioinformatics is a promising research direction in itself or an adjunct to ongoing investigations. Who This Book Is For This books is a practical introduction to programming for biologists. Programming skills are now in strong demand in biology research and development. Historically, programming has not often been viewed as a critical skill for biologists at the bench. However, recent trends in biology have made computer analysis of large amounts of data central to many research programs. This book is intended as a hands-on, one-volume course for the busy biologist to acquire practical bioinformatics programming abilities. So, if you are a biologist who needs to learn programming, this book is for you. Its goal is to teach you how to write useful and practical bioinformatics programs as quickly and as painlessly as possible. This book introduces programming as an important new laboratory skill; it presents a programming tutorial that includes a collection of protocols, or programming techniques, that can be immediately useful in the lab. But its primary purpose is to teach programming, not to build a comprehensive toolkit. There is a real blending of skills and approaches between the laboratory bench and the computer program. Many people do indeed find themselves shifting from running gels to writing Perl in the course of a day—or a career—in biology research. Of course, programming is its own discipline with its own methods and terminology, and so must be approached on its own terms. But there is cross-fertilization going on (if youll pardon the metaphor between the two disciplines). This books exercises are of varying difficulty for those using it as a class textbook or for self study. (Almost) all examples and exercises are based on real biological problems, and this book will give you a good introduction to the most common bioinformatics programming problems and the most common computer-based biological data. This books web site, http://www. reilly. com/catalog/begperlbio, includes all the program code in the book for convenient download, including the exercises and solutions, plus errata and other information. [1] IT-SC 6 [1] Program code, or simply code, means a computer program—the actual Perl language commands a programmer writes in a file. Why Should I Learn to Program? Since many researchers who describe their work as bioinformatics dont program at all, but rather, use programs written by others, its tempting to ask, Do I really need to learn programming to do bioinformatics? At one level, the answer is no, you dont. You can accomplish quite a bit using existing tools, and there are books and documentation available to help you learn those tools. But at another, higher level, the answer to the question changes. What happens when you want to do something a preexisting tool doesnt do? What happens when you cant find a tool to accomplish a particular task, and you cant find someone to write it for you? At that point, you need to learn to program. And even if you still rely mainly on existing programs and tools, it can be worthwhile to learn enough to write small programs. Small programs can be incredibly useful. For example, with a bit of practice, you can learn to write programs that run other programs and spare yourself hours sitting in front of the computer doing things by hand. Many scientists start out writing small programs and find that they really like programming. As a programmer, you never need to worry about finding the right tools for your needs; you can write them yourself. This book will get you started. Structure of This Book There are thirteen chapters and two appendixes in this book. The following provides a brief introduction: Chapter 1 This chapter covers some key concepts in molecular biology, as well as how biology and computer science fit together. Chapter 2 This chapter shows you how to get Perl up and running on your computer. Chapter 3 Chapter 3 provides an overview as to how programmers accomplish their jobs. Some of the most important practical strategies good programmers use are explained, and where to find answers to questions that arise while you are programming is carefully laid out. These ideas are made concrete by brief narrative case studies that show how programmers, given a problem, find its solution. Chapter 4 In Chapter 4 you start writing Perl programs with DNA and proteins. The programs transcribe DNA to RNA, concatenate sequences, make the reverse complement of DNA, read sequences data from files, and more. IT-SC 7 Chapter 5 This chapter continues demonstrating the basics of the Perl language with programs that search for motifs in DNA or protein, interact with users at the keyboard, write data to files, use loops and conditional tests, use regular expressions, and operate on strings and arrays. Chapter 6 This chapter extends the basic knowledge of Perl in two main directions: subroutines, which are an important way to structure programs, and the use of the Perl debugger, which can examine in detail a running Perl program. Chapter 7 Genetic mutations, fundamental to biology, are modelled as random events using the random number generator in Perl. This chapter uses random numbers to generate DNA sequence data sets, and to repeatedly mutate DNA sequence. Loops, subroutines, and lexical scoping are also discussed. Chapter 8 This chapter shows how to translate DNA to proteins, using the genetic code. It also covers a good bit more of the Perl programming language, such as the hash data type, sorted and unsorted arrays, binary search, relational databases, and DBM, and how to handle FASTA formatted sequence data. Chapter 9 This chapter contains an introduction to Perl regular expressions. The main focus of the chapter is the development of a program to calculate a restriction map for a DNA sequence. Chapter 10 The Genetic Sequence Data Bank (GenBank) is central to modern biology and bioinformatics. In this chapter, you learn how to write programs to extract information from GenBank files and libraries. You will also make a database to create your own rapid access lookups on a GenBank library. Chapter 11 This chapter develops a program that can parse Protein Data Bank (PDB) files. Some interesting Perl techniques are encountered while doing so, such as finding and iterating over lots of files and controlling other bioinformatics programs from a Perl program. Chapter 12 Chapter 12 develops some code to parse a BLAST output file. Also mentioned are the Bioperl project and its BLAST parser, and some additional ways to format output in Perl.