Fast and Sensitive Protein Sequence Homology Searches Using

Total Page:16

File Type:pdf, Size:1020Kb

Fast and Sensitive Protein Sequence Homology Searches Using bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 1 Fast and sensitive protein sequence homology searches using 2 hierarchical cluster BLAST 3 Daniel J. Nasko1,2, K. Eric Wommack2,3, Barbra D. Ferrell1,2, and Shawn W. Polson1,2* 4 5 1 Center for Bioinformatics and Computational Biology, University of Delaware, Newark, 6 Delaware, USA 7 2 Delaware Biotechnology Institute, University of Delaware, Newark, Delaware, USA 8 3 Department of Plant and Soil Sciences, College of Agriculture and Natural Resources, 9 University of Delaware, Newark, Delaware USA 10 11 12 Corresponding Author Information 13 * To whom correspondence should be addressed. 14 Address: Delaware Biotechnology Inst., 15 Innovation Way, Newark, Delaware 15 19711 16 (Tel): (302) 831-3235 17 (Fax): (302) 831-4841 18 (E-mail): [email protected] 19 20 21 22 23 1 bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 24 ABSTRACT 25 The throughput of DNA sequencing continues to increase, allowing researchers 26 to analyze genomes of interest at greater depths. An unintended consequence of this 27 data deluge is the increased cost of analyzing these datasets. As a result, genome and 28 metagenome annotation pipelines are left with a few options: (i) search against smaller 29 reference databases, (ii) use faster, but less sensitive, algorithms to assess sequence 30 similarities, or (iii) invest in computing hardware specifically designed to improve BLAST 31 searches such as GPGPU systems and/or large CPU-rich clusters. 32 We present a pipeline that improves the speed of amino acid sequence 33 homology searches with a minimal decrease in sensitivity and specificity by searching 34 against hierarchical clusters. Briefly, the pipeline requires two homology searches: the 35 first search is against a clustered version of the database and the second is against 36 sequences belonging to clusters with a hit from the first search. We tested this method 37 using two assembled viral metagenomes and three databases (Swiss-Prot, 38 Metagenomes Online, and UniRef100). Hierarchical cluster homology searching proved 39 to be 12-times faster than BLASTp and produced alignments that were nearly identical 40 to BLASTp (precision=0.99; recall=0.97). This approach is ideal when searching large 41 collections of sequences against large databases. 42 43 Keywords: Sequence alignment, annotation, metagenomics, NGS, fast homology 44 search. 45 46 2 bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 47 BACKGROUND 48 Advancements in DNA sequencing continue to have a profound impact in biology 49 and has revitalize the field of genomics. The cost of DNA sequencing has fallen 50 dramatically over the last 10 years and the throughput has increased at a rate that has 51 greatly exceeded Moore’s law [1]; Gordon Moore’s axiom which has accurately 52 predicted the rate of advancement for computational hardware over the last forty years. 53 Not only are the size of sequencing datasets increasing (e.g. a dual S4 flow cell run on 54 the NovaSeq 6000 System generates up to six tera base pairs per run), but large 55 reference databases (e.g. RefSeq, UniRef) are doubling in size every two years. At its 56 current rate, by the year 2024, UniRef100 may contain over one billion peptide 57 sequences that total nearly half a trillion amino acids. 58 The CPU requirements of homology searches against large reference databases 59 are the primary computational constraint in genome and metagenome annotation 60 pipelines. The Smith-Waterman algorithm [2] was among the first algorithms capable of 61 searching for homology between two sequences. Smith-Waterman is guaranteed to 62 produce the optimal local alignment of any two sequences, but it is far too slow, even 63 when searching a small set of experimental sequences against a small- to medium- 64 sized set of known reference sequences. Heuristic algorithms such as FASTA [3] and 65 BLAST [4] were designed to improve the speed of sequence alignment, and are 66 capable of producing optimal and near-optimal alignments in a fraction of the time when 67 compared to Smith-Waterman. However, the improvements in running time for BLAST 68 have not stood up to the accelerated growth of experimental (query) and known 69 (reference) sequence data driven by next-generation sequencing [5]. Genome and 3 bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 70 metagenome annotation pipelines are therefore left with a few options: (i) search 71 against smaller reference databases, (ii) use faster, but less sensitive, algorithms to 72 assess sequence similarities [6–8], or (iii) invest in computing hardware specifically 73 designed to improve BLAST searches such as GPGPU systems [9] and/or large CPU- 74 rich clusters. 75 We present a method for hierarchical cluster homology searching, which 76 improves the speed of amino acid sequence homology searches with a minimal 77 decrease in sensitivity and specificity. In general terms, a hierarchical cluster homology 78 search will first search query sequences against a clustered database (e.g. UniRef50 79 [10]) to identify: (i) the query sequences with a match to a cluster representative 80 sequence and (ii) the subject sequences belonging to all clusters hit by query 81 sequences. A second homology search is then performed between query sequences 82 with a hit in the first search against subject sequences belonging to the clusters with a 83 hit in the first search. Searching against a subset of the subject sequences in the 84 original (pre-clustered) database results in a linear decrease in search time by passing 85 over subject sequences that would likely not produce a significant alignment. 86 Importantly, this strategy results in sequence alignments and alignment statistics – 87 including E values (expectation values) – that are nearly identical to a BLASTp 88 homology search against the entirety of the original database. 89 90 IMPLEMENTATION 91 RUBBLE (Restricted clUster BLAST-Based pipeLinE) is a hierarchical cluster 92 protein-protein BLAST (BLASTp) pipeline written in Perl that wraps NCBI BLASTp and 4 bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 93 is available on GitHub (https://github.com/dnasko/rubble). A typical protein homology 94 search with RUBBLE requires running only one script (rubble.pl), which was 95 designed to be very similar to running a command-line BLASTp. Unlike BLASTp, 96 RUBBLE requires that the user provide not only a reference database, but also a 97 clustered version of that database (Fig. 1, part A). 98 Briefly, a RUBBLE homology search will (Fig. 1, part B): (i) use BLASTp-fast 99 (blastp with option -task blastp-fast, a feature available since BLAST+ 2.2.30) 100 [11] to search a set of queries against the database of cluster representatives, (ii) 101 extract query sequences that produced an HSP (High-scoring Segment Pair), (iii) create 102 a list of subject sequences contained in all of the clusters that had a representative 103 sequence produce an HSP, and finally (iv) perform a BLASTp search of the query 104 sequences with a match in the first search against the subject sequences belonging to 105 clusters with a hit from the first search. The second search uses the pre-clustered 106 database (i.e. the original database) as an input, but will be restricted to search against 107 only the subject sequences belonging to clusters with a hit from the first search (using 108 the -seqidlist parameter in BLAST). A more detailed explanation is presented 109 below. 110 111 RUBBLE Database Construction 112 A RUBBLE reference database can be made from any collection of proteins. 113 Given an arbitrary protein database (e.g. Swiss-Prot [12]) users must first cluster this 114 database at a low identity threshold (e.g. 50% or 60%). Next a cluster membership 115 lookup file must be created containing two columns: the sequence ID of the cluster’s 5 bioRxiv preprint doi: https://doi.org/10.1101/426098; this version posted September 26, 2018. The copyright holder for this preprint (which was not certified by peer review) is the author/funder, who has granted bioRxiv a license to display the preprint in perpetuity. It is made available under aCC-BY 4.0 International license. 116 representative and the sequence’s ID. This lookup file is crucial as it is used to create 117 the list of the subject sequences to be searched against in the second BLASTp.
Recommended publications
  • Mouse Kcnip2 Conditional Knockout Project (CRISPR/Cas9)
    https://www.alphaknockout.com Mouse Kcnip2 Conditional Knockout Project (CRISPR/Cas9) Objective: To create a Kcnip2 conditional knockout Mouse model (C57BL/6J) by CRISPR/Cas-mediated genome engineering. Strategy summary: The Kcnip2 gene (NCBI Reference Sequence: NM_145703 ; Ensembl: ENSMUSG00000025221 ) is located on Mouse chromosome 19. 10 exons are identified, with the ATG start codon in exon 1 and the TAG stop codon in exon 10 (Transcript: ENSMUST00000162528). Exon 4 will be selected as conditional knockout region (cKO region). Deletion of this region should result in the loss of function of the Mouse Kcnip2 gene. To engineer the targeting vector, homologous arms and cKO region will be generated by PCR using BAC clone RP23-98F2 as template. Cas9, gRNA and targeting vector will be co-injected into fertilized eggs for cKO Mouse production. The pups will be genotyped by PCR followed by sequencing analysis. Note: Mice homozygous for disruptions in this gene are susceptible to induced cardiac arrhythmias but are otherwise normal. Exon 4 starts from about 27.65% of the coding region. The knockout of Exon 4 will result in frameshift of the gene. The size of intron 3 for 5'-loxP site insertion: 574 bp, and the size of intron 4 for 3'-loxP site insertion: 532 bp. The size of effective cKO region: ~625 bp. The cKO region does not have any other known gene. Page 1 of 8 https://www.alphaknockout.com Overview of the Targeting Strategy Wildtype allele gRNA region 5' gRNA region 3' 1 2 3 4 5 6 7 8 9 10 Targeting vector Targeted allele Constitutive KO allele (After Cre recombination) Legends Exon of mouse Kcnip2 Homology arm cKO region loxP site Page 2 of 8 https://www.alphaknockout.com Overview of the Dot Plot Window size: 10 bp Forward Reverse Complement Sequence 12 Note: The sequence of homologous arms and cKO region is aligned with itself to determine if there are tandem repeats.
    [Show full text]
  • BIO4342 Exercise 2: Browser-Based Annotation and RNA-Seq Data
    BIO4342 Exercise 2: Browser-Based Annotation and RNA-Seq Data Jeremy Buhler March 15, 2010 This exercise continues your introduction to practical issues in comparative annotation. You’ll be annotating genomic sequence from the dot chromosome of Drosophila mojavensis using your knowledge of BLAST and some improved visualization tools. You’ll also consider how best to integrate information from high-throughput sequencing of expressed RNA. 1 Getting Started To begin, go to our local genome browser at http://gander.wustl.edu/. Select “Genome Browser” from the left-side menu and choose the “Improved Dot” assembly of D. mojavensis for viewing. Finally, hit submit to start looking at the sequence. The entire dot assembly is about 1.69 megabases in length; zoom out to see everything. This assembly is built from a set of overlapping fosmid clones prepared for the 2009 edition of BIO 4342. We’ve added a variety of information to the genome browser to help you annotate, such as: • gene-structure predictions from several different tools; • repeats annotated using the RepeatMasker program; • BLAST hits to D. melanogaster proteins; • RNA-Seq data, which we’ll describe in more detail later. Having all this evidence available at once is somewhat overwhelming. To keep the view to a manageable level, I’d suggest that you initially set all the gene prediction tracks (Genscan, Nscan, SNAP, Geneid), as well as the repeat tracks, to “dense” mode, so that each displays on a single line. Set the BLAST hit track (called “D. mel proteins”) to “pack” to see the locations of all BLAST hits, and set the “RNA-Seq Coverage” track to “full” and the “TopHat junctions” track to “pack” to get a detailed view of these results.
    [Show full text]
  • BLAT—The BLAST-Like Alignment Tool
    Resource BLAT—The BLAST-Like Alignment Tool W. James Kent Department of Biology and Center for Molecular Biology of RNA, University of California, Santa Cruz, Santa Cruz, California 95064, USA Analyzing vertebrate genomes requires rapid mRNA/DNA and cross-species protein alignments. A new tool, BLAT, is more accurate and 500 times faster than popular existing tools for mRNA/DNA alignments and 50 times faster for protein alignments at sensitivity settings typically used when comparing vertebrate sequences. BLAT’s speed stems from an index of all nonoverlapping K-mers in the genome. This index fits inside the RAM of inexpensive computers, and need only be computed once for each genome assembly. BLAT has several major stages. It uses the index to find regions in the genome likely to be homologous to the query sequence. It performs an alignment between homologous regions. It stitches together these aligned regions (often exons) into larger alignments (typically genes). Finally, BLAT revisits small internal exons possibly missed at the first stage and adjusts large gap boundaries that have canonical splice sites where feasible. This paper describes how BLAT was optimized. Effects on speed and sensitivity are explored for various K-mer sizes, mismatch schemes, and number of required index matches. BLAT is compared with other alignment programs on various test sets and then used in several genome-wide applications. http://genome.ucsc.edu hosts a web-based BLAT server for the human genome. Some might wonder why in the year 2002 the world needs sions on any number of perfect or near-perfect hits. Where another sequence alignment tool.
    [Show full text]
  • A Multithread Blat Algorithm Speeding up Aligning Sequences to Genomes Meng Wang and Lei Kong*
    Wang and Kong BMC Bioinformatics (2019) 20:28 https://doi.org/10.1186/s12859-019-2597-8 SOFTWARE Open Access pblat: a multithread blat algorithm speeding up aligning sequences to genomes Meng Wang and Lei Kong* Abstract Background: The blat is a widely used sequence alignment tool. It is especially useful for aligning long sequences and gapped mapping, which cannot be performed properly by other fast sequence mappers designed for short reads. However, the blat tool is single threaded and when used to map whole genome or whole transcriptome sequences to reference genomes this program can take days to finish, making it unsuitable for large scale sequencing projects and iterative analysis. Here, we present pblat (parallel blat), a parallelized blat algorithm with multithread and cluster computing support, which functions to rapidly fine map large scale DNA/RNA sequences against genomes. Results: The pblat algorithm takes advantage of modern multicore processors and significantly reduces the run time with the number of threads used. pblat utilizes almost equal amount of memory as when running blat. The results generated by pblat are identical with those generated by blat. The pblat tool is easy to install and can run on Linux and Mac OS systems. In addition, we provide a cluster version of pblat (pblat-cluster) running on computing clusters with MPI support. Conclusion: pblat is open source and free available for non-commercial users. It is easy to install and easy to use. pblat and pblat-cluster would facilitate the high-throughput mapping of large scale genomic and transcript sequences to reference genomes with both high speed and high precision.
    [Show full text]
  • Homology & Alignment
    Protein Bioinformatics Johns Hopkins Bloomberg School of Public Health 260.655 Thursday, April 1, 2010 Jonathan Pevsner Outline for today 1. Homology and pairwise alignment 2. BLAST 3. Multiple sequence alignment 4. Phylogeny and evolution Learning objectives: homology & alignment 1. You should know the definitions of homologs, orthologs, and paralogs 2. You should know how to determine whether two genes (or proteins) are homologous 3. You should know what a scoring matrix is 4. You should know how alignments are performed 5. You should know how to align two sequences using the BLAST tool at NCBI 1 Pairwise sequence alignment is the most fundamental operation of bioinformatics • It is used to decide if two proteins (or genes) are related structurally or functionally • It is used to identify domains or motifs that are shared between proteins • It is the basis of BLAST searching (next topic) • It is used in the analysis of genomes myoglobin Beta globin (NP_005359) (NP_000509) 2MM1 2HHB Page 49 Pairwise alignment: protein sequences can be more informative than DNA • protein is more informative (20 vs 4 characters); many amino acids share related biophysical properties • codons are degenerate: changes in the third position often do not alter the amino acid that is specified • protein sequences offer a longer “look-back” time • DNA sequences can be translated into protein, and then used in pairwise alignments 2 Find BLAST from the home page of NCBI and select protein BLAST… Page 52 Choose align two or more sequences… Page 52 Enter the two sequences (as accession numbers or in the fasta format) and click BLAST.
    [Show full text]
  • A Dissertation
    A Dissertation entitled Strategies for Membrane Protein Studies and Structural Characterization of a Metabolic Enzyme for Antibiotic Development by Buenafe T. Arachea Submitted to the Graduate Faculty as partial fulfillment of the requirements for the Doctor of Philosophy Degree in Chemistry Dr. Ronald E. Viola, Committee Chair Dr. Max O. Funk, Committee Member Dr. Donald Ronning, Committee Member Dr. Marcia McInerney, Committee Member Dr. Patricia R. Komuniecki, Dean College of Graduate Studies The University of Toledo August 2011 Copyright © 2011, Buenafe T. Arachea This document is copyrighted material. Under copyright law, no parts of this document may be reproduced without the expressed permission of the author. An Abstract of Strategies for Membrane Protein Studies and Structural Characterization of a Metabolic Enzyme for Antibiotic Development by Buenafe T. Arachea Submitted to the Graduate Faculty as partial fulfillment of the requirements for the Doctor of Philosophy Degree in Chemistry The University of Toledo August 2011 Membrane proteins are essential in a variety of cellular functions, making them viable targets for drug development. However, progress in the structural elucidation of membrane proteins has proven to be a difficult task, thus limiting the number of published structures of membrane proteins as compared with the enormous structural information obtained from soluble proteins. The challenge in membrane protein studies lies in the production of the required sample for characterization, as well as in developing methods to effectively solubilize and maintain a functional and stable form of the target protein during the course of crystallization. To address these issues, two different approaches were explored for membrane protein studies.
    [Show full text]
  • Tutorial 1: Exploring the UCSC Genome Browser
    Last updated: May 22, 2013 Tutorial 1: Exploring the UCSC Genome Browser Open the homepage of the UCSC Genome Browser at: http://genome.ucsc.edu/ In the blue bar at the top, click on the Genomes link. Change the drop down menus so that clade is set to Vertebrate, genome is set to Human and assembly is set to Feb. 2009 (GRCh37/hg19). Then type in “adam2” in the position or search term window and click submit. On the subsequent page, click on the top link under the UCSC Genes section. This should bring up a window that looks similar to that shown in Figure 1: Figure 1: ADAM2 as displayed in the UCSC genome browser with default tracks. The UCSC Genome browser is highly configurable. If your view looks much different than Fig. 1, try clicking the default tracks button below the graphic window. This is a complicated window, so we will go through it from top to bottom: 1. In the row labeled move, are buttons that allow you to move left to right on the chromosome as well as zoom in and out on the information. 2. The position window shows the genomic coordinates of the chromosome sequence displayed. You can edit this manually or use the move controls to zoom in and out or change positions. The entire chromosome can be viewed at once, though this takes a very long time to load. To the right of the jump and clear buttons, the size the genomic region being viewed is listed. The view is taken up by the ADAM2 gene, corresponding to about 94Kb in length, not atypical for a mammalian gene.
    [Show full text]
  • Genome-Wide DNA Methylation in Chronic Myeloid Leukaemia
    Genome-wide DNA Methylation in Chronic Myeloid Leukaemia Alexandra Bazeos Imperial College London Department of Medicine Centre for Haematology Thesis submitted in fulfillment of the requirements for the degree of Doctor of Philosophy of Imperial College London 2015 1 Abstract Epigenetic alterations occur frequently in leukaemia and might account for differences in clinical phenotype and response to treatment. Despite the consistent presence of the BCR-ABL1 fusion gene in Philadelphia-positive chronic myeloid leukaemia (CML), the clinical course of patients treated with tyrosine kinase inhibitors (TKI) is heterogeneous. This might be due to differing DNA methylation profiles between patients. Therefore, a validated, epigenome-wide survey in CML CD34+ progenitor cells was performed in newly diagnosed chronic phase patients using array-based DNA methylation and gene expression profiling. In practice, the CML DNA methylation signature was remarkably homogeneous; it differed from CD34+ cells of normal persons and did not correlate with an individual patient’s response to TKI therapy. Using a meta-analysis tool it was possible to demonstrate that this signature was highly enriched for developmentally dynamic regions of the human methylome and represents a combination of CML-unique, myeloid leukemia- specific and pan-cancer sub-signatures. The CML profile involved aberrantly methylated genes in signaling pathways already implicated in CML leukaemogenesis, including TGF-beta, Wnt, Jak-STAT and MAPK. Furthermore, a core set of differentially methylated promoters were identified that likely have a role in modulating gene expression levels. In conclusion, the findings are consistent with the notion that CML starts with the acquisition of a BCR-ABL1 fusion gene by a haematopoietic stem cell, which then either causes or cooperates with a series of DNA methylation changes that are specific for CML.
    [Show full text]
  • Technologies for Genomic Medicine
    Technologies for Genomic Medicine CANVAS and AnnoBot, Solutions for Genomic Variant Annotation A RENCI TECHNICAL REPORT TR-14-04 CONTACT INFORMATION Christopher Bizon, PhD Telephone: 919.445.9600 Email: [email protected] List of Technical Terms and Websites The Team* 1000 Genomes Project, www.1000genomes.org Christopher Bizon, PhD, RENCI AnnoBot (Annotation Bot) Senior Informatics Scientist; Stanley Ahalt, PhD, RENCI Director and BioPython software,biopython.org/wiki/Main_Page Professor, Department of Computer BLAT (BLAST-like Alignment Tool), www.blat.net Science UNC Chapel Hill; Karamarie CANVAS (CAroliNa Variant Annotation Store) Fecho, PhD, Medical and Scientific Writer for RENCI; Nassib Nassar, ClinVar (Clinical Variants Resource database), www.ncbi.nlm.nih.gov/clinvar RENCI Senior Research Scientist; dbSNP (Single Nucleotide Polymorphism Database), www.ncbi.nlm.nih.gov/SNP Charles P. Schmitt, PhD, RENCI ESP (Exome Sequencing Project), evs.gs.washington.edu/EVS Chief Technical Officer and Director gbff (GenBank flat file) format, www.ncbi.nlm.nih.gov/Sitemap/samplerecord. of Informatics and Data Science; html. Erik Scott, RENCI Senior Research Software Developer; and Kirk C. HGNC (HUGO Gene Nomenclature Committee),www.genenames.org Wilhelmsen, MD, PhD, RENCI HGMD® (Human Gene Mutation Database), www.hgmd.cf.ac.uk/ac/index.php Director of Biomedical Research, PostgreSQL (Structured Query Language) database, www.postgresql.org RENCI Chief Domain Scientist pythonTM modules, www.python.org for Genomics, and Professor, Departments of Genetics and RefSeq (Reference Sequence Collection), www.ncbi.nlm.nih.gov/refseq Neurology, UNC Chapel Hill SQLite3 database, www.sqlite.org TR-14-04 in the RENCI Technical Report Series, May 2014 Introduction Renaissance Computing Institute enomic medicine holds great promise to transform the medical University of North Carolina profession and individualize health care.
    [Show full text]
  • BIOINFORMATICS Doi:10.1093/Bioinformatics/Bti1205
    Vol. 21 Suppl. 3 2005, pages iii20–iii30 BIOINFORMATICS doi:10.1093/bioinformatics/bti1205 Genome analysis Incorporation of splice site probability models for non-canonical introns improves gene structure prediction in plants Michael E. Sparks1 and Volker Brendel1,2,∗ 1Department of Genetics, Development and Cell Biology and 2Department of Statistics, Iowa State University, 2112 Molecular Biology Building, Ames, IA 50011-3260, USA Received on June 13, 2005; accepted on August 16, 2005 ABSTRACT pre-mRNA transcript prior to being translated into a functional Motivation: The vast majority of introns in protein-coding genes of protein. The 5 -terminus of an intron is commonly known as the higher eukaryotes have a GT dinucleotide at their 5-terminus and donor site, whereas the 3 -terminus is referred to as the acceptor an AG dinucleotide at their 3 end. About 1–2% of introns are non- site. These terms correlate with the roles of these sites in the bio- canonical, with the most abundant subtype of non-canonical introns chemical reactions underlying the process of splicing, as catalyzed being characterized by GC and AG dinucleotides at their 5- and 3- by the spliceosome. Most introns belong to the class of canonical termini, respectively. Most current gene prediction software, whether introns, characterized by a GT donor dinucleotide (first two bases based on ab initio or spliced alignment approaches, does not include of the intron) and an AG acceptor dinucleotide (last two bases of explicit models for non-canonical introns or may exclude their predic- the intron), and are processed by the U2-type splicing apparatus tion altogether.
    [Show full text]
  • BAM Alignment File — Output: Alignment Counts and RPKM Expression Measurements for Each Exon • Calculate Coverage Profiles Across the Genome with “Sam2wig”
    01 Agenda Item 02 Agenda Item 03 Agenda Item SOLiD TM Bioinformatics Overview (I) July 2010 1 Secondary and Tertiary Primary Analysis Analysis BioScope in cluster SETS ICS Export BioScope in cloud •Satay Plots •Auto Correlation •Heat maps On Instrument Other mapping tools 2 Auto-Export (cycle-by-cycle) Collect Primary Analysis Generate Secondary Images (colorcalls) Csfasta & qual Analysis Instrument Cluster Auto Export delta spch run definition Merge Generate Tertiary Spch files Csfasta & qual Analysis Bioscope Cluster 3 Manual Export Collect Primary Analysis Generate Secondary Images (colorcalls) Csfasta & qual Analysis Instrument Cluster Option in SETS to export All run data or combination of Spch, csfasta & qual files Tertiary Analysis Bioscope Cluster 4 Auto-Export database requirement removed Instrument Cluster Remote Cluster JMS Broker JMS Broker Export ICS Hades Bioscope (ActiveMQ) (ActiveMQ) Daemon Postgres Postgres SETS Bioscope UI Tomcat Tomcat Disco installer Auto-export installer Bioscope installer System installer 5 SOLiDSOLiD DataData AnalysisAnalysis Workflow:Workflow: Secondary/Tertiary Analysis (off -instrument) Primary Analysis Secondary Analysis Tertiary Analysis BioScope BioScope Reseq WT SAET •SNP •Coverage .csfasta / .qual Accuracy Enhanced .csfasta •InDel •Exon Counting •CNV •Junction Finder •Inversion •Fusion Transcripts Mapping Mapped reads (.ma) Third Party Tools Mapped reads (.bam) maToBam 6 01 Agenda Item 02 Agenda Item 03 Agenda Item SOLiD TM Bioinformatics Overview (II) July 2010 7 OutlineOutline • Color
    [Show full text]
  • Association Between DNA Methylation and Coronary Heart Disease Or Other Atherosclerotic Events: a Systematic Review
    Association between DNA methylation and coronary heart disease or other atherosclerotic events: a systematic review. Alba Fernández-Sanlés1,2, Sergi Sayols-Baixeras1,2,3, Isaac Subirana1,4, Irene R Degano1,3, Roberto Elosua1,3 Running title: DNA methylation and coronary heart disease 1.-Cardiovascular Epidemiology and Genetics Research Group, REGICOR Study group, IMIM (Hospital del Mar Medical Research Institute), Barcelona, Catalonia, Spain. 2.-Universitat Pompeu Fabra (UPF), Barcelona, Catalonia, Spain. 3.-CIBER Cardiovascular Diseases (CIBERCV), Barcelona, Catalonia, Spain. 4.-CIBER Epidemiology and Public Health (CIBERESP), Barcelona, Catalonia, Spain Author for correspondence: Roberto Elosua, MD, PhD IMIM, Hospital del Mar Medical Research Institute Dr Aiguader 88, 08003 Barcelona, Catalonia, Spain Telephone: (+34) 933 160800; Email: [email protected] Word count: 6,581 Total number of Figures and Tables: 1 Figure, 5 Tables References: 85 Supplementary material: 4 Figures, 6 Tables 1 ABSTRACT Background and aims: The aim of this study was to perform a systematic review of the association between DNA methylation and coronary heart disease (CHD) or related atherosclerotic traits. Methods: A systematic review was designed. The condition of interest was DNA methylation, and the outcome was CHD or other atherosclerosis-related traits. Three DNA methylation approaches were considered: global methylation, candidate-gene, and epigenome-wide association studies (EWAS). A functional analysis was undertaken using the Ingenuity Pathway Analysis software. Results: In total, 51 articles were included in the analysis: 12 global methylation, 34 candidate-gene and 11 EWAS, with six studies using more than one approach. The results of the global methylation studies were inconsistent. The candidate-gene results were consistent for some genes, suggesting that hypermethylation in ESRα, ABCG1 and FOXP3 and hypomethylation in IL-6 were associated with CHD.
    [Show full text]