Lab Manual Bioperl Programming Language

Total Page:16

File Type:pdf, Size:1020Kb

Lab Manual Bioperl Programming Language LAB MANUAL BIOPERL PROGRAMMING LANGUAGE DBT STAR STATUS Department of BCA Published by Coimbatore Institute of Information Technology #156, 3rd Floor, Kalidas Road, Ramnagar, Coimbatore – 641009, Tamil Nadu, India. Website: www.ciitresearch.org Complimentary Copy All Rights Reserved. Original English Language Edition 2020 © Copyright by Coimbatore Institute of Information Technology. This book may not be duplicated in any way without the express written consent of the publisher, except in the form of brief excerpts or quotations for the purpose of review. The information contained herein is for the personal use of the reader and may not be incorporated in any commercial programs, other books, database, or any kind of software without written consent of the publisher. Making copies of this book or any portion thereof for any purpose other than your own is a violation of copyright laws. This edition has been published by Coimbatore Institute of Information Technology, Coimbatore. Limits of Liability/Disclaimer of Warranty: The author and publisher have used their effort in preparing this Bioperl Programming Language book and author makes no representation or warranties with respect to accuracy or completeness of the contents of this book, and specifically disclaims any implied warranties of merchantability or fitness for any particular purpose. There are no warranties which extend beyond the descriptions contained in this paragraph. No warranty may be created or extended by sales representatives or written sales materials. Neither CiiT nor author shall be liable for any loss of profit or any other commercial damage, including but limited to special, incidental, consequential, or other damages. Trademarks: All brand names and product names used in this book are trademarks, registered trademarks, or trade names of their respective holders. ISBN 978-93-891053-7-7 This book is printed in 70 gsm papers. Printed in India by Mahasagar Technologies. Coimbatore Institute of Information Technology, #156, 3rd Floor, Kalidas Road, Ramnagar, Coimbatore – 641009, Tamil Nadu, India. Phone: 0422-4377821 www.ciitresearch.org ii Complimentary Copy Authors Dr. M. S Vijaya K. Geethalakshmi S. Mohanapriya M. Selvanayaki T. S. Anushya Devi T. Saranya A. Kavitha L. Sheeba G. Sangeetha S. Kavitha iii Complimentary Copy Notes ********** iv Complimentary Copy Dr. R. SUBASHKUMAR, M.Sc., Ph.D., DMLT., PGDNBT., Associate Professor, Department of Biotechnology, Sri Ramakrishna Arts & Science College, (Autonomous, Affiliated to Bharathiar University) Coimbatore, Tamil Nadu. India. The Lab Manual of Bioperl Programming Language is a collection of fourteen titled modules that facilitate the development of perl scripts, its use in the analysis of biological data, exploring approaches, emerging methodologies, and tools that can give biological meaning to the data generated. The manual has been prepared with prioritised methodology viz., operation of tools using the suitable methods, annotated algorithms, self- descriptive results, etc. I hope that the practical manual will also be of interest to computational biologists who want to learn and practice a little more about the biological questions related to the field of bioinformatics. This book is intended to ease the learning curve for new users of bioperl, as well as a user guide for a specific set of DNA and protein sequence analysis programs and enables developing scripts that can analyze large quantities of sequence data in ways that are typically difficult or impossible with web based systems. The book has been carefully reviewed by the team experts and highly appreciated to fulfil the requirement of the DBT STAR College Scheme. v Complimentary Copy Notes ********** vi Complimentary Copy Mr. Vivek Chandramohan, Assistant Professor, Department of Biotechnology, Siddaganga Institute of Technology, Tumkur-572103, Karnataka, India. I have gone through the entire manual of “Bioperl Programming Language” lab. This manual is written very well and the concepts are very clear. The Bioperl is used for many application, in this manual deals with, BLAST, Multiple sequences alignment, Gene prediction algorithm, and some mathematical model. Finding mutation in given sequences is most impotent clinical genomics. vii Complimentary Copy Notes ********** viii Complimentary Copy Introduction to Bioperl: Bioperl is a collection of perl modules that facilitate the development of perl scripts for bio-informatics applications. It provides reusable perl modules that facilitate writing perl scripts for sequence manipulation, accessing of databases using a range of data formats and execution and parsing of the results of various molecular biology programs including Blast, clustalw, TCoffee, Genscan, ESTscan and HMMER. Bioperl enables developing scripts that can analyse large quantities of sequence data in ways that are typically difficult or impossible with web based systems. Using Bioperl: Bioperl provides software modules for many of the typical tasks of bioinformatics programming. These include: Accessing sequence data from local and remote databases Transforming formats of database/ file records Manipulating individual sequences Searching for "similar" sequences Creating and manipulating sequence alignments Searching for genes and other structures on genomic DNA Developing machine readable sequence annotation Installation: The actual installation of the various system components is accomplished in the standard manner: Locate the package on the network Download Decompress (with gunzip or a simliar utility) Remove the file archive (eg with tar -xvf) Create a ‘‘makefile’’ (with ‘‘perl Makefile.PL’’ for perl modules or a supplied ‘‘install’’ or ‘‘configure’’ program for non-perl program Run ‘‘make’’, ‘‘make test’’ and ‘‘make install’’ This procedure must be repeated for every CPAN. ix Complimentary Copy Module, Bioperl-extension and external module to be installed. A helper module CPAN.pm is Available from CPAN which automates the process for installing the perl modules. x Complimentary Copy BIOPERL PROGRAMMING LANGUAGE Syllabus: 1. To align the sequence using Local Blast. 2. Write a script to search for genes from Genscan. 3. Protein Sequence Generation. 4. To count start and stop codons in a sequence. 5. To calculating the reverse complement of DNA Sequence. 6. To concatenating DNA Fragments Transcription: DNA to RNA. 7. Program to simulate DNA Mutation. 8. Write a code to check file extensions using Perl. 9. Write a code to search the given string in an entered sequence. 10. To compute total and average length of the proteins in these files. 11. Reading a protein sequence from a file. 12. Write a sequence in a file. xi Complimentary Copy Notes ********** xii Complimentary Copy List of Experiments S. No Programs Page No 01 Align the Sequence using Local Blast 1 02 Gene from Genscan 5 03 Protein Sequence Generation 7 04 To Count Start and Stop Codons in a Sequence 11 05 Reverse Complement of DNA 13 06 DNA Fragments Transcription 16 07 DNA Mutation 21 08 To Check File Extensions 27 09 To Search String in Sequence 29 10 Total and Average length of Proteins in files 31 11 Reading Protein Sequence From Files 37 12 Sequence into a file 43 xiii Complimentary Copy Notes ********** xiv Complimentary Copy BioPerl Programming Language 1 1. ALIGN THE SEQUENCE USING LOCAL BLAST Prerequisites: NCBI, BLAST Tools. Aim: To write a program to align the sequence using local blast. Steps Using Tools: 1) Open the NCBI website. 2) Choose the BLAST under popular resources. 3) According to the chosen sequence choose Protein BLAST or Nucleotide BLAST. 4) Enter the sequence. 5) Choose Others in Database option. 6) Choose Nucleotide in the following option. 7) Choose BLAST option to view the output. Department of BCA Complimentary Copy 2 BioPerl Programming Language Department of BCA Complimentary Copy BioPerl Programming Language 3 Department of BCA Complimentary Copy 4 BioPerl Programming Language Department of BCA Complimentary Copy BioPerl Programming Language 5 2. GENE FROM GENSCAN Prerequisites: Perl Software, Notepad. Aim: To write a script to search for genes in the Genscan. Algorithm: Step 1: Start the process. Step 2: Open programs folder in Perl Folder. Step 3: Open Notepad and type the program. Step 4: Save the program as sel.pl in the folder which is created in perl. Step 5: Run the program in Command Prompt as perl sel.pl. Step 6: Check the output in the perl folder. Step 7: Stop the program. Program: use Bio::Seq; use Bio::SeqIO; $seq_obj = Bio::Seq-> new (-seq=>"aaaatgggggggggggccccgtt", -display_id => "#12345", -desc => "example 1", -alphabet => "dna"); $seqio_obj = Bio::SeqIO->new(-file => '>perlseq1.fasta', -format => 'fasta' ); $seqio_obj->write_seq($seq_obj); Output: C:\>cd perl64 C:\Perl64>cd programs C:\Perl64\Programs>perl sel.pl C:\Perl64\Programs> Department of BCA Complimentary Copy 6 BioPerl Programming Language Department of BCA Complimentary Copy BioPerl Programming Language 7 3. PROTEIN SEQUENCE GENERATION Prerequisites: Expasy and UniProtKB Tools Aim: To write a program for generating protein sequence. Steps Using Tools: 1. Search Expasy tool in the Google. 2. Click the Proteomics column. 3. Under the databases, click UniProtKB link. 4. Copy the protein sequence in the text file. Department of BCA Complimentary Copy 8 BioPerl Programming Language Department of BCA Complimentary Copy BioPerl Programming Language 9 Department of BCA Complimentary Copy 10 BioPerl Programming Language Department
Recommended publications
  • Easybuild Documentation Release 20210907.0
    EasyBuild Documentation Release 20210907.0 Ghent University Tue, 07 Sep 2021 08:55:41 Contents 1 What is EasyBuild? 3 2 Concepts and terminology 5 2.1 EasyBuild framework..........................................5 2.2 Easyblocks................................................6 2.3 Toolchains................................................7 2.3.1 system toolchain.......................................7 2.3.2 dummy toolchain (DEPRECATED) ..............................7 2.3.3 Common toolchains.......................................7 2.4 Easyconfig files..............................................7 2.5 Extensions................................................8 3 Typical workflow example: building and installing WRF9 3.1 Searching for available easyconfigs files.................................9 3.2 Getting an overview of planned installations.............................. 10 3.3 Installing a software stack........................................ 11 4 Getting started 13 4.1 Installing EasyBuild........................................... 13 4.1.1 Requirements.......................................... 14 4.1.2 Using pip to Install EasyBuild................................. 14 4.1.3 Installing EasyBuild with EasyBuild.............................. 17 4.1.4 Dependencies.......................................... 19 4.1.5 Sources............................................. 21 4.1.6 In case of installation issues. .................................. 22 4.2 Configuring EasyBuild.......................................... 22 4.2.1 Supported configuration
    [Show full text]
  • Bioperl What’S Bioperl?
    Bioperl What’s Bioperl? Bioperl is not a new language It is a collection of Perl modules that facilitate the development of Perl scripts for bioinformatics applications. Bioperl and perl Bioperl Modules Perl Modules Perls script input Perl Interpreter output Bioperl and Perl Why bioperl for bioinformatics? Perl is good at file manipulation and text processing, which make up a large part of the routine tasks in bioinformatics. Perl language, documentation and many Perl packages are freely available. Perl is easy to get started in, to write small and medium-sized programs. Where to get help Type perldoc <modulename> in terminal Search for particular module in https://metacpan.org Bioperl Document Object-oriented and Process-oriented programming Process-oriented: Yuan Hao eats chicken Name object: $name Action method: eat Food object: $food Object-oriented: $name->eat($food) Modularize the program Platform and Related Software Required Perl 5.6.1 or higher Version 5.8 or higher is highly recommended make for Mac OS X, this requires installing the Xcode Developer Tools Installation On Linux or Max OS X Install from cpanminus: perlbrew install-cpanm cpanm Bio::Perl Install from source code: git clone https://github.com/bioperl/bioperl-live.git cd bioperl-live perl Build.PL ./Build test (optional) ./Build install Installation On Windows Install MinGW (MinGW is incorporated in Strawberry Perl, but must it be installed through PPM for ActivePerl) : ppm install MinGW Install Module::Build, Test::Harness and Test::Most through CPAN: Type cpan to enter the CPAN shell. At the cpan> prompt, type install CPAN Quit (by typing ‘q’) and reload CPAN.
    [Show full text]
  • The Bioperl Toolkit: Perl Modules for the Life Sciences
    Downloaded from genome.cshlp.org on January 25, 2012 - Published by Cold Spring Harbor Laboratory Press The Bioperl Toolkit: Perl Modules for the Life Sciences Jason E. Stajich, David Block, Kris Boulez, et al. Genome Res. 2002 12: 1611-1618 Access the most recent version at doi:10.1101/gr.361602 Supplemental http://genome.cshlp.org/content/suppl/2002/10/20/12.10.1611.DC1.html Material References This article cites 14 articles, 9 of which can be accessed free at: http://genome.cshlp.org/content/12/10/1611.full.html#ref-list-1 Article cited in: http://genome.cshlp.org/content/12/10/1611.full.html#related-urls Email alerting Receive free email alerts when new articles cite this article - sign up in the box at the service top right corner of the article or click here To subscribe to Genome Research go to: http://genome.cshlp.org/subscriptions Cold Spring Harbor Laboratory Press Downloaded from genome.cshlp.org on January 25, 2012 - Published by Cold Spring Harbor Laboratory Press Resource The Bioperl Toolkit: Perl Modules for the Life Sciences Jason E. Stajich,1,18,19 David Block,2,18 Kris Boulez,3 Steven E. Brenner,4 Stephen A. Chervitz,5 Chris Dagdigian,6 Georg Fuellen,7 James G.R. Gilbert,8 Ian Korf,9 Hilmar Lapp,10 Heikki Lehva¨slaiho,11 Chad Matsalla,12 Chris J. Mungall,13 Brian I. Osborne,14 Matthew R. Pocock,8 Peter Schattner,15 Martin Senger,11 Lincoln D. Stein,16 Elia Stupka,17 Mark D. Wilkinson,2 and Ewan Birney11 1University Program in Genetics, Duke University, Durham, North Carolina 27710, USA; 2National Research Council of
    [Show full text]
  • Vasco Da Rocha Figueiras Algoritmos Para Genómica Comparativa
    Universidade de Aveiro Departamento Electrónica, Telecomunicações 2010 e Informática Vasco da Rocha Algoritmos para Genómica Comparativa Figueiras Universidade de Aveiro Departamento de Electrónica, Telecomunicações 2010 e Informática Vasco da Rocha Algoritmos para Genómica Comparativa Figueiras Dissertação apresentada à Universidade de Aveiro para cumprimento dos requisitos necessários à obtenção do grau de Mestre em Engenharia Electrónica e Telecomunicações, realizada sob a orientação científica do Doutor José Luís Oliveira, Professor associado da Universidade de Aveiro. o júri presidente Prof. Doutor Armando José Formoso de Pinho Professor Associado do Departamento de Electrónica, Telecomunicações e Informática da Universidade de Aveiro Prof. Doutor Rui Pedro Sanches de Castro Lopes Professor Coodenador do Departamento de Informática e Comunicações do Instituto Politécnico de Bragança orientador Prof. Doutor José Luis Guimarães de Oliveira Professor Associado do Departamento de Electrónica, Telecomunicações e Informática da Universidade de Aveiro agradecimentos Durante o desenvolvimento desta dissertação, recebi muito apoio de colegas e amigos. Agora que termino o trabalho não posso perder a oportunidade de agradecer a todas as pessoas que me ajudaram nesta etapa. Um agradecimento ao meu orientador Professor Doutor José Luís Oliveira e ao Doutor Miguel Monsanto Pinheiro, pela oportunidade de aprendizagem. À minha família pelo apoio incondicional, incentivo e carinho. Aos meus colegas e amigos por toda a ajuda e pelos momentos de convívio e de descontracção, que quebraram tantas dificuldades, ao longo desta etapa. A ti, Rita por todo o carinho, paciência e amor. palavras-chave Bioinformática, sequenciação, BLAST, alinhamento de sequências, genómica comparativa. resumo Com o surgimento da Genómica e da Proteómica, a Bioinformática conduziu a alguns dos avanços científicos mais relevantes do século XX.
    [Show full text]
  • Perl for Bioinformatics Perl and Bioperl I
    Perl for Bioinformatics Perl and BioPerl I Jason Stajich July 13, 2011 Perl for Bioinformatics Slide 1/83 Outline Perl Intro Basics Syntax and Variables More complex: References Routines Reading and Writing Regular Expressions BioPerl Intro Useful modules Data formats Databases in BioPerl Sequence objects details Trees Multiple Alignments BLAST and Sequence Database searching Other general Perl modules Perl for Bioinformatics Perl Intro Slide 2/83 Outline Perl Intro Basics Syntax and Variables More complex: References Routines Reading and Writing Regular Expressions BioPerl Intro Useful modules Data formats Databases in BioPerl Sequence objects details Trees Multiple Alignments BLAST and Sequence Database searching Other general Perl modules Perl for Bioinformatics Perl Intro Basics Slide 3/83 Why Perl for data processing & bioinformatics Fast text processing Regular expressions Extensive module libraries for pre-written tools Large number of users in community of bioinformatics Scripts are often faster to write than full compiled programs Cons Syntax sometimes confusing to new users; 'There's more than one way to do it' can also be confusing. (TMTOWTDI) Cons Not a true object-oriented language so some abstraction is clunky and hacky Scripting languages (Perl, Python, Ruby) generally easier to write simply than compiled ones (C, C++, Java) as they are often not strongly typed and less memory management control. Perl for Bioinformatics Perl Intro Basics Slide 4/83 Perl packages CPAN - Comprehensive Perl Archive http://www.cpan.org Perl
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]
  • Web & Grid Technologies in Bioinformatics, Computational And
    Current Bioinformatics, 2008, 3, 000-000 1 Web & Grid Technologies in Bioinformatics, Computational and Systems Biology: A Review Azhar A. Shah1, Daniel Barthel1, Piotr Lukasiak2,3, Jacek Blazewicz2,3 and Natalio Krasnogor*,1 1School of Computer Science, University of Nottingham, Jubilee Campus, NG81BB, Nottingham, UK 2Institute of Computing Science, Poznan University of Technology, Piotrowo 2, 60-965 Poznan, Poland 3Institute of Bioorganic Chemistry, Laboratory of Bioinformatics, Polish Academy of Sciences, Noskowskiego 12/14, 61- 704 Poznan, Poland Abstract: The acquisition of biological data, ranging from molecular characterization and simulations (e.g. protein fold- ing dynamics), to systems biology endeavors (e.g. whole organ simulations) all the way up to ecological observations (e.g. as to ascertain climate change’s impact on the biota) is growing at unprecedented speed. The use of computational and networking resources is thus unavoidable. As the datasets become bigger and the acquisition technology more refined, the biologist is empowered to ask deeper and more complex questions. These, in turn, drive a runoff effect where large re- search consortia emerge that span beyond organizations and national boundaries. Thus the need for reliable, robust, certi- fied, curated, accessible, secure and timely data processing and management becomes entrenched within, and crucial to, 21st century biology. Furthermore, the proliferation of biotechnologies and advances in biological sciences has produced a strong drive for new informatics solutions, both at the basic science and technological levels. The previously unknown situation of dealing with, on one hand, (potentially) exabytes of data, much of which is noisy, has large experimental er- rors or theoretical uncertainties associated with it, or on the other hand, large quantities of data that require automated computationally intense analysis and processing, have produced important innovations in web and grid technology.
    [Show full text]
  • BINF 634 Bioinformatics Programming
    UNIVERSITA’ DEGLI Teacher: Matteo Re STUDI DI MILANO Metodi e linguaggi per il trattamento dei dati PERL scripting S introduction • PERL programming • Problem solving and Debugging • To read and write documentation • Data manipulation: filtering and transformation • Pattern matching and data mining (examples) • Example application: Computational Biology • Analysis and manipulation of biological sequences • Interaction with biological batabases (NCBI, EnsEMBL, UCSC) • BioPERL Objectives Guidelines • Operating system • During class appointments we will use windows • PERL installation WIN: http://www.activestate.com/activeperl/downloads UNIX, MacOS: available by default • Text editor PERL are saved as text files. Many options available… Vim (UNIX like OS) Notepad (Windows) Sequence file – FASTA format >gi|40457238|HIV-1 isolate 97KE128 from Kenya gag gene, partial cds CTTTTGAATGCATGGGTAAAAGTAATAGAAGAAAGAGGTTTCAGTCCAGAAGTAATACCCATGTTCTCAG CATTATCAGAAGGAGCCACCCCACAAGATTTAAATACGATGCTGAACATAGTGGGGGGACACCAGGCAGC TATGCAAATGCTAAAGGATACCATCAATGAGGAAGCTGCAGAATGGGACAGGTTACATCCAGTACATGCA GGGCCTATTCCGCCAGGCCAGATGAGAGAACCAAGGGGAAGTGACATAGCAGGAACTACTAGTACCCCTC AAGAACAAGTAGGATGGATGACAAACAATCCACCTATCCCAGTGGGAGACATCTATAAAAGATGGATCAT CCTGGGCTTAAATAAAATAGTAAGAATGTATAGCCCTGTTAGCATTTTGGACATAAAACAAGGGCCAAAA GAACCCTTTAGAGACTATGTAGATAGGTTCTTTAAAACTCTCAGAGCCGAACAAGCTT >gi|40457236| HIV-1 isolate 97KE127 from Kenya gag gene, partial cds TTGAATGCATGGGTGAAAGTAATAGAAGAAAAGGCTTTCAGCCCAGAAGTAATACCCATGTTCTCAGCAT TATCAGAAGGAGCCACCCCACAAGATTTAAATATGATGCTGAATATAGTGGGGGGACACCAGGCAGCTAT
    [Show full text]
  • (12) United States Patent (10) Patent No.: US 8,407,013 B2 Rogan (45) Date of Patent: Mar
    USOO8407013B2 (12) United States Patent (10) Patent No.: US 8,407,013 B2 Rogan (45) Date of Patent: Mar. 26, 2013 (54) AB INITIOGENERATION OF SINGLE COPY Claverie, J-M.. “Computational Methods of the Identification of GENOMIC PROBES Genes in Vertebrate Genomic Sequences.” Hum Molec Genet, 1997. 6.10:1735-1744. Craig, J.M., et al., “Removal of Repetitive Sequences from FISH (76) Inventor: Peter K. Rogan, London (CA) Probes Using PCR-Assisted Affinity Chromatography.” Hum Genet, 1997, 100/3-4:472-476. (*) Notice: Subject to any disclaimer, the term of this Delcher, A.L., et al., “Alignment of Whole Genomes.” Nucl Acids patent is extended or adjusted under 35 Res, 1999, 27/11:2369-2376. U.S.C. 154(b) by 0 days. Devereux, J., et al., A Comprehensive Set of Sequence Analysis Programs for the VAX, NuclAcids Res, 1984, 12/1:387-395. Dover, G., et al., “Molecular Drive.” Trends in Genetics, 2002, (21) Appl. No.: 13/469,531 18.11:587-589. Edgar, R.C., et al., “PILER: Identification and Classification of (22) Filed: May 11, 2012 Genomic Repeats.” Bioinformatics, 2005, 21(S1):i152-i158. Eisenbarth, I., et al., "Long-Range Sequence Composition Mirrors (65) Prior Publication Data Linkage Disequilibrium Pattern in a 1.13 Mb Region of Human Chromosome 22, Human Molec Genet, 2001, 10/24:2833-2839. US 2012/O253689 A1 Oct. 4, 2012 Faranda, S., et al., “The Human Genes Encoding Renin-Binding Related U.S. Application Data Protein and Host Cell Factor are Closely Linked in Xq28 and Tran scribed in the Same Direction.
    [Show full text]
  • Program Performance Review
    CALIFORNIA STATE UNIVERSITY, FULLERTON Program Performance Review Master of Science in Computer Science Department of Computer Science 3/15/2013 This is a self-study report of the Master of Science in Computer Science for Program Performance Review Program Performance Review Master of Science in Computer Science, 2011 – 2012 I. Department/Program Mission, Goals and Environment A. The mission of the MS in Computer Science Program is to enable each graduate to lay a solid foundation in the scientific, engineering, and other aspects of computing that prepare the graduate regardless of his/her background for a successful career that can advance the creation and application of computing technologies in the flat world. The learning goals of the MS in computer science program are as follows: 1. Students will have a solid foundation necessary to function effectively in a responsible technical or management position in global development environment and/or to pursue a Ph.D. in related areas. • Ability to identify, formulate, and solve computer science related problems. • Ability to understand professional and ethical responsibility in computer science related fields. • Ability to understand major contemporary issues in Computer Science. • Ability to apply process thinking and statistical thinking in solving and analyzing a complex problem. 2. Students will learn the technical skills necessary to design, implement, verify, and validate solutions in computer systems and applications. • Ability to design, implement, and test a computer system, component, or algorithm to meet specified needs. • Ability to evaluate the performance of a computing solution. • Ability to use the techniques, skills, and modern tools necessary for computer science related practices.
    [Show full text]
  • Technical Notes All Changes in Fedora 13
    Fedora 13 Technical Notes All changes in Fedora 13 Edited by The Fedora Docs Team Copyright © 2010 Red Hat, Inc. and others. The text of and illustrations in this document are licensed by Red Hat under a Creative Commons Attribution–Share Alike 3.0 Unported license ("CC-BY-SA"). An explanation of CC-BY-SA is available at http://creativecommons.org/licenses/by-sa/3.0/. The original authors of this document, and Red Hat, designate the Fedora Project as the "Attribution Party" for purposes of CC-BY-SA. In accordance with CC-BY-SA, if you distribute this document or an adaptation of it, you must provide the URL for the original version. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, JBoss, MetaMatrix, Fedora, the Infinity Logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. For guidelines on the permitted uses of the Fedora trademarks, refer to https:// fedoraproject.org/wiki/Legal:Trademark_guidelines. Linux® is the registered trademark of Linus Torvalds in the United States and other countries. Java® is a registered trademark of Oracle and/or its affiliates. XFS® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. All other trademarks are the property of their respective owners. Abstract This document lists all changed packages between Fedora 12 and Fedora 13.
    [Show full text]
  • IT-SC Beginning Perl for Bioinformatics James Tisdall Publisher: O'reilly First Edition October 2001 ISBN: 0-596-00080-4, 384 Pages
    IT-SC Beginning Perl for Bioinformatics James Tisdall Publisher: O'Reilly First Edition October 2001 ISBN: 0-596-00080-4, 384 pages This book shows biologists with little or no programming experience how to use Perl, the ideal language for biological data analysis. Each chapter focuses on solving particular problems or class of problems, so you'll finish the book with a solid understanding of Perl basics, a collection of programs for such tasks as parsing BLAST and GenBank, and the skills to tackle more advanced bioinformatics programming. $ IT-SC IT-SC 2 Preface What Is Bioinformatics? About This Book Who This Book Is For Why Should I Learn to Program? Structure of This Book Conventions Used in This Book Comments and Questions Acknowledgments 1. Biology and Computer Science 1.1 The Organization of DNA 1.2 The Organization of Proteins 1.3 In Silico 1.4 Limits to Computation 2. Getting Started with Perl 2.1 A Low and Long Learning Curve 2.2 Perl's Benefits 2.3 Installing Perl on Your Computer 2.4 How to Run Perl Programs 2.5 Text Editors 2.6 Finding Help 3. The Art of Programming 3.1 Individual Approaches to Programming 3.2 Edit—Run—Revise (and Save) 3.3 An Environment of Programs 3.4 Programming Strategies 3.5 The Programming Process 4. Sequences and Strings 4.1 Representing Sequence Data 4.2 A Program to Store a DNA Sequence 4.3 Concatenating DNA Fragments 4.4 Transcription: DNA to RNA 4.5 Using the Perl Documentation 4.6 Calculating the Reverse Complement in Perl 4.7 Proteins, Files, and Arrays 4.8 Reading Proteins in Files 4.9 Arrays 4.10 Scalar and List Context 4.11 Exercises 5.
    [Show full text]