Development of a Performant Defragmentation Process for a Robotic Tape Library Within the CASTOR HSM

Total Page:16

File Type:pdf, Size:1020Kb

Development of a Performant Defragmentation Process for a Robotic Tape Library Within the CASTOR HSM Development of a Performant Defragmentation Process for a Robotic Tape Library within the CASTOR HSM by Felix Ehm A thesis submitted in partial fulfillment of the requirements for the degree Diplom-Informatiker (Fachhochschule) at the University of Applied Sciences Wiesbaden Academic Unit of Information Technology Examiner at academy: Prof. Dr. Detlef Richter Examiner at company: Dr. Sebastien Ponce Supervisor: German Cancio-Melio Company: CERN, European Organisation for Nuclear Research Erkl¨arung Hiermit erkl¨are ich an Eides statt, dass ich die vorliegende Diplomarbeit selbst¨andig und nur unter Verwendung der angegebenen Quellen und Hilfsmittel verfasst habe. Ort, Datum Unterschrift Diplomand Erkl¨arung zur Verbreitungsform Hiermit erkl¨are ich mein Einverst¨andnis mit den im folgenden aufgef¨uhrten Verbrei- tungsformen dieser Diplomarbeit: Verbreitungsform ja nein Einstellung der Arbeit in die Bibliothek der FHW X Ver¨offentlichung des Titels der Arbeit im Internet X Ver¨offentlichung der Arbeit im Internet X Ort, Datum Unterschrift Diplomand ”We see only what we know.” Johann Wolfgang von Goethe (1749-1832) German poet. Abstract Modern magnetic tape technology is used at the European Centre for Nuclear Re- search [CERN] for permanent storage of data from high energy physics experiments. CERN is the largest particle physics institute in the world, and with the start of data taking from the Large Hardon Collider [LHC] experiments in 2008 the technical infrastructure for a predicted fifteen petabyes per year of data has to be provided. To ensure high data integrity for the unique particle events, which will be used for analysis in the following decades, the development and maintenance of storage is vital. Several areas for enhancement within the CERN developed HSM system, CASTOR (Cern Advanced STORage Manager), were discovered during the testing phase of this technical infrastructure. In particular the fragmentation of files over several tapes and the effect of this problem on file retrieval time are significant issues and the main topic of this thesis. In this thesis an analysis of these problems is made. Their solutions, in terms of performance improvements applicable to the robotic tape libraries currently used at CERN, are elaborated upon and presented. The implementation of a new defrag- mentation process is presented. Contents 1 Introduction 1 1.1 ThesisOverview.............................. 4 1.2 StructureofthisDocument . 4 1.3 ValidationofthisDocument . 5 1.4 Acknowledgement............................. 6 1.5 Prerequisites................................ 7 2 The Castor Project 9 2.1 History................................... 10 2.2 GeneralOverview............................. 10 2.2.1 DiskServers............................ 11 2.2.2 TapeLibraries........................... 13 2.2.3 TechnicalInformation . 16 2.3 Architecture................................ 22 2.3.1 TheComponents ......................... 23 2.3.2 TheCentralServices . 25 2.3.3 TheStagerLogic ......................... 26 2.3.4 TheRecallofFiles ........................ 27 2.3.5 TheMigrationofFiles . 28 I Contents 3 What is Repack? 31 3.1 IntroductiontoTapes. .. .. 32 3.1.1 History............................... 32 3.1.2 CurrentUse............................ 32 3.1.3 OrganisationofTapes . 34 3.1.4 OrganisationofFilesonTapes. 36 3.2 TheReasonsinDetail .......................... 37 4 The old Repack 41 4.1 Introduction................................ 41 4.2 Architecture................................ 42 5 Analysis and Design for a new Repack 45 5.1 Limitation................................. 45 5.2 Requirements ............................... 49 6 Alternative Solutions 51 6.1 IBMTivoliTapeOptimizeronz/OS . 51 6.2 NovastorTapeCopy............................ 52 6.3 Result ................................... 52 6.4 Conclusion................................. 53 7 The new Repack 55 7.1 UseCases ................................. 55 7.2 Requirements ............................... 58 7.3 TheDefinitionofaRepackProcess . 59 7.4 Architecture................................ 59 II Contents 7.4.1 SoftwareFramework . 59 7.5 HighLevelDesign............................. 62 7.6 LowLevelDesign ............................. 65 7.6.1 TheDataModel ......................... 65 7.6.2 TheStateDiagram . .. .. 69 7.6.3 RepackClient........................... 69 7.6.4 RepackServer........................... 72 7.7 The modified CASTOR II Stager Workflow . 78 7.7.1 Theaffectedcomponents . 78 7.7.2 RetrievingFilesfromTape. 79 7.7.3 CopyingFilesbacktoTape . 83 8 Optimisation 87 8.1 DefinitionofReadEfficiency. 88 8.2 TapeLoading ............................... 89 8.3 ReadingFilesfromTape . 89 8.4 WritingtoTape.............................. 93 9 Results 95 10 Conclusion 99 A Repack Class Diagram 103 B Repack Sequence Diagram 105 C Stager Catalogue Schema 107 D CD Contents 109 III Contents E Glossary 111 Bibliography 116 Index 116 IV List of Figures 1.1 Illustration of the LHC and the four experiments . .... 2 1.2 The CDC3800 used in 1967 at CERN to process the Swiss election.. 3 2.1 Illustration of data transport between Tier zones . ....... 10 2.2 DatastorageinCASTORHSM . 11 2.3 Disk server network utilisation over one year period . ....... 12 2.4 Rack with disk servers installed at CERN, August 2006 . ..... 13 2.5 Tape server network utilisation over the last year . ...... 15 2.6 The STK SL8500 tape library installed at CERN, August 2006.... 15 2.7 The IBM 3584 tape library installed at CERN, August 2006 . .... 16 2.8 Illustration of the generated code from Umbrello . ...... 19 2.9 Capture of the framework for multi-threaded daemons class diagram . 21 2.10 The overview of the CASTOR II architecture . .. 23 3.1 Illustration of reading / writing data to tape. ..... 35 3.2 The file sequence number for new data . 36 3.3 Illustration of the optimisation effect of repack on tapes........ 39 4.1 SequencediagramforRepackI . 43 7.1 UsecasediagramforRepackclient . 56 V List of Figures 7.2 Theactivitydiagram . .. .. 63 7.3 Repack II interaction with a subset of CASTOR II . .. 65 7.4 TheRepackdatamodel ......................... 68 7.5 The states of a RepackSubRequest . 69 7.6 The detailed overview of Repack and its server components...... 78 7.7 Capture of the states of Stager SubRequests . ... 81 7.8 Repackingtwotapecopies . 82 7.9 The activity diagram of the new NameServer function . ..... 86 8.1 Illustration of the advantage reading files in distance toBOT..... 90 8.2 Illustration of the parameters seek time algortithm . ....... 92 8.3 Illustration of the advantage of sorting the order to writefiles. 94 A.1 The complete Repack class overview . 104 B.1 The complete Repack sequence digram . 106 C.1 The simplified Stager Catalogue schema . 108 VI Chapter 1 Introduction The European Centre for Nuclear Research [CERN] is the largest institute for nuclear physics in the world. Since the 1950s fundamental research in this field of activity has been conducted. Not only has this research influenced the basic pillars of science, but our daily life has been affected by the technological developed for the experiments. The World Wide Web [WWW], initially used to facilitate the sharing and of data and information among researchers, was one of these technologies first presented in 1991 by Tim Berners-Lee [1]. Todays effords greatly exceed technical dimensions of those earlier experiments. The plans for a new generation of experiment facilities were decided at the end of the 1980s. The Large Hadron Collider [LHC] will become the world’s largest particle accelerator. It is being built in a circular tunnel, 27 kilometers in circumference, and buried around 100 to 120 meters underground. It straddles the Swiss and French borders on the outskirts of Geneva. Its purpose is to accelerate particles up to slightly below lightspeed and force them to collide in one of the four High Energy Physics [HEP] experiments ALICE (A Large Ion Collider Experiment), ATLAS (A Toroidal LHC ApparatuS), LHCb (LHC study of Charge Parity) and CMS (Compact Muon Solenoid). Each target at different field of nuclear physics and, like LHC, are currently being constructed. 1 Chapter 1. Introduction Figure 1.1 shows the arragement of these experiments at the LHC tunnel. Figure 1.1: Illustration of the LHC and the four experiments With the start of the experiments in 2007 / 2008 a large amount of data has to be managed. After filtering the raw data from about 40 million particle collisions per second from the detectors, between 100 and 1000 megabytes per second has to be stored permanently. Running the experiments for seven months a year results in about 15 petabytes of permanent storage requirement [2] [3] each year. The Information Technology Department [IT-DEP] at CERN is responsible for pro- viding this storage and analysis infrastructure. The IT-DEP develops in-house solu- tions if commercial product do not exist. But not only storing this information for 2 Chapter 1. Introduction later analysis is important: the data integrity of the results also has to be ensured for the subsequent decades, as well. For this, magnetic tape technology has been choosen. Since the introduction of computers at CERN, magnetic tape has been used to store data (see Figure 1.2). They have been found to be a reliable and cheap solution. Tape libraries organise tapes and provide a robotic control mechanism to load them into tape drives. They are very expensive and reading data from tape takes much more time than from disk, but compared to a disk solution for the same space, they are
Recommended publications
  • Sequence Listings Webinar Suzannah K. Sundby Carl Oppedahl
    Suzannah K. Sundby Canady + Lortz LLP Sequence Listings Webinar January 9, 2018 – Updated Version Carl Oppedahl Oppedahl Patent Law Firm LLC DISCLAIMER These materials and views expressed today reflect only the personal views of the author and do not necessarily represent the views of other members and clients of the author’s organizations. These materials are public information and have been prepared solely for educational purposes to contribute to the understanding of U.S. intellectual property law. While every attempt was made to ensure that these materials are accurate, errors or omissions may be contained therein, for which any liability is disclaimed. These materials and views are not a source of legal advice and do not establish any form of attorney-client relationship with the authors and their law firms. Why are some sequence errors not identified by Checker? Is “SEQ ID NO” required before sequences in Specifications? Do you recommend using the PatentIn Software? How do you correct sequence listing errors in PCTs? What about the new WIPO ST.26 Standard? Is Checker worthwhile? How can I easily edit sequence listings generated by others? Can I use other software to generate sequence listings? How do I file sequence listings using EFS-Web and ePCT? How long does it take the USPTO to review and approve? Any risk TYFNIL of using certain sequence descriptors? Help! IT locked down my computer… what do I do? Any sequence listing tips? Why Practitioners Should Know and Do Usually lack of time to send to outside vendors Last minute changes to applications (apps) containing sequences (seqs) Particularly, changes to claims Not hostage to staff/vendors, overtime, etc.
    [Show full text]
  • BEA TUXEDO Reference Manual Section 5 - File Formats and Data Descriptions
    BEA TUXEDO Reference Manual Section 5 - File Formats and Data Descriptions BEA TUXEDO Release 6.5 Document Edition 6.5 February 1999 Copyright Copyright © 1999 BEA Systems, Inc. All Rights Reserved. Restricted Rights Legend This software and documentation is subject to and made available only pursuant to the terms of the BEA Systems License Agreement and may be used or copied only in accordance with the terms of that agreement. It is against the law to copy the software except as specifically allowed in the agreement. This document may not, in whole or in part, be copied photocopied, reproduced, translated, or reduced to any electronic medium or machine readable form without prior consent, in writing, from BEA Systems, Inc. Use, duplication or disclosure by the U.S. Government is subject to restrictions set forth in the BEA Systems License Agreement and in subparagraph (c)(1) of the Commercial Computer Software-Restricted Rights Clause at FAR 52.227-19; subparagraph (c)(1)(ii) of the Rights in Technical Data and Computer Software clause at DFARS 252.227-7013, subparagraph (d) of the Commercial Computer Software--Licensing clause at NASA FAR supplement 16-52.227-86; or their equivalent. Information in this document is subject to change without notice and does not represent a commitment on the part of BEA Systems. THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. FURTHER, BEA Systems DOES NOT WARRANT, GUARANTEE, OR MAKE ANY REPRESENTATIONS REGARDING THE USE, OR THE RESULTS OF THE USE, OF THE SOFTWARE OR WRITTEN MATERIAL IN TERMS OF CORRECTNESS, ACCURACY, RELIABILITY, OR OTHERWISE.
    [Show full text]
  • The AWK Programming Language
    The Programming ~" ·. Language PolyAWK- The Toolbox Language· Auru:o V. AHo BRIAN W.I<ERNIGHAN PETER J. WEINBERGER TheAWK4 Programming~ Language TheAWI(. Programming~ Language ALFRED V. AHo BRIAN w. KERNIGHAN PETER J. WEINBERGER AT& T Bell Laboratories Murray Hill, New Jersey A ADDISON-WESLEY•• PUBLISHING COMPANY Reading, Massachusetts • Menlo Park, California • New York Don Mills, Ontario • Wokingham, England • Amsterdam • Bonn Sydney • Singapore • Tokyo • Madrid • Bogota Santiago • San Juan This book is in the Addison-Wesley Series in Computer Science Michael A. Harrison Consulting Editor Library of Congress Cataloging-in-Publication Data Aho, Alfred V. The AWK programming language. Includes index. I. AWK (Computer program language) I. Kernighan, Brian W. II. Weinberger, Peter J. III. Title. QA76.73.A95A35 1988 005.13'3 87-17566 ISBN 0-201-07981-X This book was typeset in Times Roman and Courier by the authors, using an Autologic APS-5 phototypesetter and a DEC VAX 8550 running the 9th Edition of the UNIX~ operating system. -~- ATs.T Copyright c 1988 by Bell Telephone Laboratories, Incorporated. All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopy­ ing, recording, or otherwise, without the prior written permission of the publisher. Printed in the United States of America. Published simultaneously in Canada. UNIX is a registered trademark of AT&T. DEFGHIJ-AL-898 PREFACE Computer users spend a lot of time doing simple, mechanical data manipula­ tion - changing the format of data, checking its validity, finding items with some property, adding up numbers, printing reports, and the like.
    [Show full text]
  • IBM VM/370 (Ems) Terminal User's Guide for FORTRAN IV Program Product Program Products
    SC28-6891-1 IBM VM/370 (eMS) Terminal User's Guide for FORTRAN IV Program Product Program Products Program Numbers 5734-F01 5734-F02 5734-F03 5734-LM1 5734-LM3 Page of SC28-6891-0,-1 Revised May 13, 1977 By TNL SN20-922S Second Edition (April 1975) This edition, as amended by technical newsletters SN20-9201 and SN20-9225, applies to Release 1.0 of the IBM Virtual Machine Facility/370 (VM/370) (CMS). This edition is a reprint of SC28-6891-0 incorporating changes released in Technical Newsletters SN28-0609 (dated March 1, 1973) and SN28-0620 (dated January 3, 1974). Changes are listed in the Summary of Amendments, Number 3, on the facing page. Information in this publication is subject to significant change. Any such changes will be published in new editions or technical newsletters. Before using the publication, consult the latest IBM System/360 Bibliography, GC20-0360, or IBM System/370 Bibliography, GC20-0001, and the technical newsletters that amend the particular bibliography, to learn which editions are applicable and current. Requests for copies of IBM publications shou'ld be made to your IBM representative or to the IBM branch office that serves your locality. Forms for readers' comments are provided at the back of this publication. If the forms have been removed, address comments to IBM Corporation, P. O. Box 50020, Programming Publishing, San Jose, California 95150. Comments and suggesti~ns become the property of IBM. © Copyright International Business Machines Corporation 1972 Summary of Amendments Number 1 Date of Publication: March 1, 1973 Form of Publication: TNL SN28-0609 to SC28-6891-0 CP and CMS Command Abbreviations Maintenance: Documentation Only Valid abbreviations have been added to the summary descriptions of significant CP and CMS commands.
    [Show full text]
  • Journal Import Requirements and Technical Guidance
    Journal Import Requirements and Technical Guidance Document Purpose The purpose of this document is to provide technical requirements information regarding the Journal Import process for those involved in the remediation of systems impacted by Workday Release 4 functionality. Prior to Workday Release 4 in July 2017, journal import utilizes the Journal Staging Area (JSA). This document provides information about the design that will be used to replace the JSA process of uploading files into Oracle with the new process for loading files into Workday. The process covers both non-Internal Service Provider (non-ISP) and Internal Service Provider (ISP) Journal Imports. Process Due to the large number of JSA sources, one of the guiding principles for the new Journal Import process has been that the overall process should feel familiar and require minimal training for end-users. In order to accomplish this goal, the design(s) utilizes the existing Managed File Transfer (MFT) source directories; the file formats, while different, utilize a file format that contains a Header (GLH) record and multiple Detail (GLD) records. The formats can be viewed in the template file - ISP and non-ISP journal file layouts. The designers of the process are aware that there are use cases that will require some sources to submit both JSA files to be routed to EBS at the same time that they are submitting Journal Import files to be imported into Workday. This use case is very constrained and will only last for a very short period of time. If you think this may apply to you, the team would like to hear from you.
    [Show full text]
  • Streampix 5 Tech Support:[email protected]
    Norpix Inc - www.norpix.com StreamPix 5 Tech Support:[email protected] STREAMPIX 5 Copyright Norpix Inc. (C) 2009-2013 StreamPix5 - Copyright Norpix Inc. (C) 2013 (1/187) Norpix Inc - www.norpix.com StreamPix 5 Tech Support:[email protected] Table of Contents About StreamPix 5...................................................................................................................................8 Minimum system requirements................................................................................................................9 Installing StreamPix...............................................................................................................................10 Authorization codes...............................................................................................................................11 StreamPix 5 Basics................................................................................................................................12 Ribbon Interface overview.................................................................................................................12 Faster !..........................................................................................................................................14 Default list of Keyboard Shortcuts.................................................................................................15 The Sequence slider ....................................................................................................................16
    [Show full text]
  • The UNIX Time- Sharing System
    1. Introduction There have been three versions of UNIX. The earliest version (circa 1969–70) ran on the Digital Equipment Cor- poration PDP-7 and -9 computers. The second version ran on the unprotected PDP-11/20 computer. This paper describes only the PDP-11/40 and /45 [l] system since it is The UNIX Time- more modern and many of the differences between it and older UNIX systems result from redesign of features found Sharing System to be deficient or lacking. Since PDP-11 UNIX became operational in February Dennis M. Ritchie and Ken Thompson 1971, about 40 installations have been put into service; they Bell Laboratories are generally smaller than the system described here. Most of them are engaged in applications such as the preparation and formatting of patent applications and other textual material, the collection and processing of trouble data from various switching machines within the Bell System, and recording and checking telephone service orders. Our own installation is used mainly for research in operating sys- tems, languages, computer networks, and other topics in computer science, and also for document preparation. UNIX is a general-purpose, multi-user, interactive Perhaps the most important achievement of UNIX is to operating system for the Digital Equipment Corpora- demonstrate that a powerful operating system for interac- tion PDP-11/40 and 11/45 computers. It offers a number tive use need not be expensive either in equipment or in of features seldom found even in larger operating sys- human effort: UNIX can run on hardware costing as little as tems, including: (1) a hierarchical file system incorpo- $40,000, and less than two man years were spent on the rating demountable volumes; (2) compatible file, device, main system software.
    [Show full text]
  • K-Watch & K-Manager Pro Application Software User
    K-Watch & K-Manager Pro Application Software User Manual K-Watch & K-Manager Pro Patent Information This product may be protected by one or more patents. For further information, please visit: www.grassvalley.com/patents/ Copyright and Trademark Notice Grass Valley®, GV® and the Grass Valley logo and/or any of the Grass Valley products listed in this document are trademarks or registered trademarks of GVBB Holdings SARL, Grass Valley USA, LLC, or one of its affiliates or subsidiaries. All other intellectual property rights are owned by GVBB Holdings SARL, Grass Valley USA, LLC, or one of its affiliates or subsidiaries. All third party intellectual property rights (including logos or icons) remain the property of their respective owners. Copyright © 2021 GVBB Holdings SARL and Grass Valley USA, LLC. All rights reserved. Specifications are subject to change without notice. Terms and Conditions Please read the following terms and conditions carefully. By using K-Watch and K- Manager Pro documentation, you agree to the following terms and conditions. Grass Valley hereby grants permission and license to owners of K-Watch and K- Manager Pro to use their product manuals for their own internal business use. Manuals for Grass Valley products may not be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying and recording, for any purpose unless specifically authorized in writing by Grass Valley. A Grass Valley manual may have been revised to reflect changes made to the product during its manufacturing life. Thus, different versions of a manual may exist for any given product.
    [Show full text]
  • User's Guide to Seqninja™ (Command-Line Edition)
    User's Guide to SeqNinja™ (Command-Line Edition) DNASTAR, Inc. 2014 Contents Before You Begin ...........................................................................................................................4 Overview .........................................................................................................................................5 Getting Started with SeqNinja ......................................................................................................6 Editing in the SeqNinja Shell ........................................................................................................8 Command-Line Options ................................................................................................................8 Supported File Formats .................................................................................................................9 The SeqNinja Language ..............................................................................................................10 Language Overview .................................................................................................................10 Escape Codes ...........................................................................................................................11 File Patterns .............................................................................................................................12 Settings .....................................................................................................................................13
    [Show full text]
  • Distributed Metadata Management for Post-Production Environments
    Distributed Metadata Management for Post-production Environments Werner Bailer1, Konstantin Schinas2, Georg Thallinger1, Wolfgang Schmidt2, Werner Haas1 1 JOANNEUM RESEARCH Forschungsgesellschaft mbH Institute of Information Systems & Information Management Steyrergasse 17, 8010 Graz, Austria 2 DVS Digital Video Systems GmbH Krepenstraße 8, 30165 Hannover, Germany Abstract: Efficient and flexible management of digital essence and associated metadata is of critical relevance in post-production. We describe a distributed content management system, which uses a peer-to-peer architecture in order to support the dynamic nature of post-production setups. Each peer indexes content on storage under its control by extracting relevant metadata from the headers of essence files as well as by performing automatic content analysis in a background process. The extracted metadata are indexed in a lightweight database at each peer and stored on disk in MPEG-7 XML format in order to provide a standard compliant interface for metadata exchange. The client tool running on a peer allows to edit the metadata in the data base, in the MPEG-7 file and in the file headers (e.g. to adjust timecodes). Moreover, the software provides tools for essence management (copying, moving, defragmentation). The system allows searching for content across all peers in the network. A visual keyframe-based browsing interface allows exploring the indexed content based on the extracted metadata. 1 Introduction Digital media technology resulted in a lasting change in post-production workflows. In digital post-production physical “storage media” such as film rolls and video tapes recede in importance. Instead, uncompressed image sequences in high resolution (e.g.
    [Show full text]
  • Guide to Openvms File Applications
    Guide to OpenVMS File Applications Order Number: AA-PV6PD-TK April 2001 This document is intended for application programmers and designers who write programs that use OpenVMS RMS files. Revision/Update Information: This manual supersedes the Guide to OpenVMS File Applications, OpenVMS Alpha Version 7.2 and OpenVMS VAX Version 7.2 Software Version: OpenVMS Alpha Version 7.3 OpenVMS VAX Version 7.3 Compaq Computer Corporation Houston, Texas © 2001 Compaq Computer Corporation Compaq, AlphaServer, VAX, VMS, the Compaq logo Registered in U.S. and Patent and Trademark Office. Alpha, OpenVMS, PATHWORKS, DECnet, and DEC are trademarks of Compaq Information Technologies Group, L.P. in the United States and other countries. UNIX and X/Open are trademarks of The Open Group in the United States and other countries. All other product names mentioned herein may be the trademarks of their respective companies. Confidential computer software. Valid license from Compaq 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. Compaq shall not be liable for technical or editorial errors or omissions contained herein. The information in this document is provided "as is" without warranty of any kind and is subject to change without notice. The warranties for Compaq products are set forth in the express limited warranty statements accompanying such products. Nothing herein should be construed as constituting an additional warranty. ZK4506 The Compaq OpenVMS documentation set is available on CD-ROM.
    [Show full text]
  • Introduction to NGS
    Introduction to NGS Dr Torsten Seemann Peter MacCallum Cancer Centre - Fri 27 July 2012 What we will cover today ● High throughput sequencing ● Read sequences ● Base quality values ● FASTQ and FASTA files ● Sequence alignment ● BAM files ● Visualising alignments Sequencing In an ideal world... ● Collect a human genomic DNA sample ● Run it through the lab sequencing machine ● Get back 46 files ○ phased, haplotype chromosomes ○ each one a single contiguous sequence of AGTC ○ maybe some extra files if cancer sample Reality bites ● Unfortunately, no such instrument exists ○ can't read long stretches of DNA (yet) ● But we can read short pieces of DNA ○ shred DNA into ~500 bp fragments ○ we can read these reliably ● High-throughput sequencing ○ sequence millions of different fragments in parallel ○ various technologies to do this Technologies Instrument Method Read Length Yield Quality Value synthesis + Illumina fluorescence 250 ++++ +++++ ++++ ligation + SOLiD fluorescence 75 ++++ +++ +++ non-term NTP + Ion Torrent pH wells 300 ++ +++ +++ non-term NTP + Roche 454 luminescence 600 + ++++ ++ PacBio synthesis + ZMW 12000 +++ + ++ Illumina ● HiSeq 2000 ○ 1 week run ○ 300 Gb ○ 3 billion reads (100bp) ○ "big jobs" ● MiSeq ○ 1 day run ○ 1.5 Gb ○ 5 million reads (150bp) ○ "benchtop sequencer" What you get back Millions to billions of reads (big files): ATGCTTCTCCGCCTTTAATTAAAATTCCATTTCGTGCACCAACACCCGTTCCTACCATAATAGCTGTTGGAGTCGCTAAACCTAATGCACATGGACACGC <- 1st read CTAAGATACTGCCATCTTCTTCCAACGTAAATTGTACGTGATTTTCGATCCATTTTCTTCGAGGTTCTACTTTGTCACCCATTAGTGTGGTTACTCGACG
    [Show full text]