Dendropy Tutorial Release 3.12.1

Total Page:16

File Type:pdf, Size:1020Kb

Dendropy Tutorial Release 3.12.1 DendroPy Tutorial Release 3.12.1 Jeet Sukumaran and Mark T. Holder March 22, 2014 Contents i ii CHAPTER 1 Phylogenetic Data in DendroPy 1.1 Introduction to Phylogenetic Data Objects 1.1.1 Types of Phylogenetic Data Objects Phylogenetic data in DendroPy is represented by one or more objects of the following classes: Taxon A representation of an operational taxonomic unit, with an attribute, label, corresponding to the taxon label. TaxonSet A collection of Taxon objects representing a distinct definition of taxa (for example, as specified explicitly in a NEXUS “TAXA” block, or implicitly in the set of all taxon labels used across a Newick tree file). Tree A collection of Node and Edge objects representing a phylogenetic tree. Each Tree object maintains a reference to a TaxonSet object in its attribute, taxon_set, which specifies the set of taxa that are referenced by the tree and its nodes. Each Node object has a taxon attribute (which points to a particular Taxon object if there is an operational taxonomic unit associated with this node, or is None if not), a parent_node attribute (which will be None if the Node has no parent, e.g., a root node), a Edge attribute, as well as a list of references to child nodes, a copy of which can be obtained by calling child_nodes. TreeList A list of Tree objects. A TreeList object has an attribute, taxon_set, which speci- fies the set of taxa that are referenced by all member Tree elements. This is enforced when a Tree object is added to a TreeList, with the TaxonSet of the Tree object and all Taxon references of the Node objects in the Tree mapped to the TaxonSet of the TreeList. CharacterMatrix Representation of character data, with specializations for different data types: DnaCharacterMatrix, RnaCharacterMatrix, ProteinCharacterMatrix, StandardCharacterMatrix, ContinuousCharacterMatrix, etc. A CharacterMatrix can treated very much like a dict object, with Taxon objects as keys and character data as values associated with those keys. DataSet A meta-collection of phylogenetic data, consisting of lists of multiple TaxonSet ob- jects (taxon_sets), TreeList objects (tree_lists), and CharacterMatrix objects (char_matrices). 1.1.2 Creating New (Empty) Objects All of the above names are imported into the the the dendropy namespace, and so to instantiate new, empty objects of these classes, you would need to import dendropy: 1 DendroPy Tutorial, Release 3.12.1 >>> import dendropy >>> tree1= dendropy.Tree() >>> tree_list11= dendropy.TreeList() >>> dna1= dendropy.DnaCharacterMatrix() >>> dataset1= dendropy.DataSet() Or import the names directly: >>> from dendropy import Tree, TreeList, DnaCharacterMatrix, DataSet >>> tree1= Tree() >>> tree_list1= TreeList() >>> dna1= DnaCharacterMatrix() >>> dataset1= DataSet() 1.1.3 Reading and Writing Phylogenetic Data DendroPy provides a rich set of tools for reading and writing phylogenetic data in various formats, such as NEXUS, Newick, PHYLIP, etc. These are covered in detail in the following “Reading Phylogenetic Data” and “Writing Phylo- genetic Data” chapters respectively. 1.2 Reading Phylogenetic Data 1.2.1 Creating and Populating New Objects The Tree, TreeList, CharacterMatrix-derived, and DataSet classes all support “get_from_*” factory methods that allow for the simultaneous instantiation and population of the objects from a data source: get_from_stream(src, schema, **kwargs) Takes a file or file-like object opened for read- ing the data source as the first argument, and a string specifying the schema as the second. get_from_path(src, schema, **kwargs) Takes a string specifying the path to the the data source file as the first argument, and a string specifying the schema as the second. get_from_string(src, schema, **kwargs) Takes a string containing the source data as the first argument, and a string specifying the schema as the second. All these methods minimally take a source and schema specification string as arguments and return a new object of the given type populated from the given source: >>> import dendropy >>> tree1= dendropy.Tree.get_from_string("((A,B),(C,D))", schema="newick") >>> tree_list1= dendropy.TreeList.get_from_path("pythonidae.mcmc.nex", schema="nexus") >>> dna1= dendropy.DnaCharacterMatrix.get_from_stream(open("pythonidae.fasta"),"dnafasta") >>> std1= dendropy.StandardCharacterMatrix.get_from_path("python_morph.nex","nexus") >>> dataset1= dendropy.DataSet.get_from_path("pythonidae.nex","nexus") The schema specification string can be one of: “nexus”, “newick”, “nexml”, “fasta”, or “phylip”. Not all formats are supported for reading, and not all formats make sense for particular objects (for example, it would not make sense to try and instantiate a Tree or TreeList object from a FASTA-formatted data source). Alternatively, you can also pass a file-like object and a schema specification string to the constructor of these classes using the keyword arguments stream and schema respectively: >>> import dendropy >>> tree1= dendropy.Tree(stream=open("mle.tre"), schema="newick") >>> tree_list1= dendropy.TreeList(stream=open("pythonidae.mcmc.nex"), schema="nexus") 2 Chapter 1. Phylogenetic Data in DendroPy DendroPy Tutorial, Release 3.12.1 >>> dna1= dendropy.DnaCharacterMatrix(stream=open("pythonidae.fasta"), schema="dnafasta") >>> std1= dendropy.StandardCharacterMatrix(stream=open("python_morph.nex"), schema="nexus") >>> dataset1= dendropy.DataSet(stream=open("pythonidae.nex"), schema="nexus") Various keyword arguments can also be passed to these methods which customize or control how the data is parsed and mapped into DendroPy object space. These are discussed below. 1.2.2 Reading and Populating (or Repopulating) Existing Objects The Tree, TreeList, CharacterMatrix-derived, and DataSet classes all support a suite of “read_from_*” instance methods that parallels the “get_from_*” factory methods described above: read_from_stream(src, schema, **kwargs) Takes a file or file-like object opened for read- ing the data source as the first argument, and a string specifying the schema as the second. read_from_path(src, schema, **kwargs) Takes a string specifying the path to the the data source file as the first argument, and a string specifying the schema as the second. read_from_string(src, schema, **kwargs) Takes a string specifying containing the source data as the first argument, and a string specifying the schema as the second. When called on an existing TreeList or DataSet object, these methods add the data from the data source to the object, whereas when called on an existing Tree or CharacterMatrix object, they replace the object’s data with data from the data source. As with the “get_from_*” methods, the schema specification string can be any supported and type-apppropriate schema, such as “nexus”, “newick”, “nexml”, “fasta”, “phylip”, etc. For example, the following accumulates post-burn-in trees from several different files into a single TreeList object: >>> import dendropy >>> post_trees= dendropy.TreeList() >>> post_trees.read_from_path("pythonidae.nex.run1.t","nexus", tree_offset=200) >>> print(post_trees.description()) TreeList object at 0x550990 (TreeList5573008): 801 Trees >>> post_trees.read_from_path("pythonidae.nex.run2.t","nexus", tree_offset=200) >>> print(post_trees.description()) TreeList object at 0x550990 (TreeList5573008): 1602 Trees >>> post_trees.read_from_path("pythonidae.nex.run3.t","nexus", tree_offset=200) >>> print(post_trees.description()) TreeList object at 0x550990 (TreeList5573008): 2403 Trees >>> post_trees.read_from_path("pythonidae.nex.run4.t","nexus", tree_offset=200) >>> print(post_trees.description()) TreeList object at 0x5508a0 (TreeList5572768): 3204 Trees The TreeList object automatically handles taxon management, and ensures that all appended Tree objects share the same TaxonSet reference. Thus all the Tree objects created and aggregated from the data sources in the example will all share the same TaxonSet and Taxon objects, which is important if you are going to be carrying comparisons or operations between multiple Tree objects. In contrast to the aggregating behavior of read_from_* of TreeList and DataSet objects, the read_from_* methods of Tree- and CharacterMatrix-derived objects show replacement behavior. For example, the following changes the contents of a Tree by re-reading it: >>> import dendropy >>> t= dendropy.Tree() >>> t.read_from_path(’pythonidae.mle.nex’,’nexus’) >>> print(t.description()) Tree object at 0x79c70 (Tree37413776: ’0’): (’Python molurus’:0.0779719244,((’Python sebae’:0.1414715009,(((((’Morelia tracyae’:0.0435011998,(’Morelia amethistina’:0.0305993564,((’Morelia nauta’:0.0092774432,’Morelia kinghorni’:0.0093145395):0.005595,’Morelia clastolepis’:0.005204698):0.023435):0.012223):0.025359,’Morelia boeleni’:0.0863199106):0.019894,((’Python reticulatus’:0.0828549023,’Python timoriensis’:0.0963051344):0.072003,’Morelia oenpelliensis’:0.0820543043):0.002785):0.00274,((((’Morelia viridis’:0.0925974416,(’Morelia carinata’:0.0943697342,(’Morelia spilota’:0.0237557178,’Morelia bredli’:0.0357358071):0.041377):0.005225):0.004424,(’Antaresia maculosa’:0.1141193265,((’Antaresia childreni’:0.0363195704,’Antaresia stimsoni’:0.0188535952):0.043287,’Antaresia perthensis’:0.0947695442):0.019148):0.007921):0.022413,(’Leiopython albertisii’:0.0698883547,’Bothrochilus boa’:0.0811607602):0.020941):0.007439,((’Liasis olivaceus’:0.0449896545,(’Liasis mackloti’:0.0331564496,’Liasis fuscus’:0.0230286886):0.058253):0.016766,’Apodora papuana’:0.0847328612):0.008417):0.006539):0.011557,(’Aspidites ramsayi’:0.0349772256,’Aspidites
Recommended publications
  • Treebase: an R Package for Discovery, Access and Manipulation of Online Phylogenies
    Methods in Ecology and Evolution 2012, 3, 1060–1066 doi: 10.1111/j.2041-210X.2012.00247.x APPLICATION Treebase: an R package for discovery, access and manipulation of online phylogenies Carl Boettiger1* and Duncan Temple Lang2 1Center for Population Biology, University of California, Davis, CA,95616,USA; and 2Department of Statistics, University of California, Davis, CA,95616,USA Summary 1. The TreeBASE portal is an important and rapidly growing repository of phylogenetic data. The R statistical environment has also become a primary tool for applied phylogenetic analyses across a range of questions, from comparative evolution to community ecology to conservation planning. 2. We have developed treebase, an open-source software package (freely available from http://cran.r-project. org/web/packages/treebase) for the R programming environment, providing simplified, programmatic and inter- active access to phylogenetic data in the TreeBASE repository. 3. We illustrate how this package creates a bridge between the TreeBASE repository and the rapidly growing collection of R packages for phylogenetics that can reduce barriers to discovery and integration across phyloge- netic research. 4. We show how the treebase package can be used to facilitate replication of previous studies and testing of methods and hypotheses across a large sample of phylogenies, which may help make such important reproduc- ibility practices more common. Key-words: application programming interface, database, programmatic, R, software, TreeBASE, workflow include, but are not limited to, ancestral state reconstruction Introduction (Paradis 2004; Butler & King 2004), diversification analysis Applications that use phylogenetic information as part of their (Paradis 2004; Rabosky 2006; Harmon et al.
    [Show full text]
  • NASP: an Accurate, Rapid Method for the Identification of Snps in WGS Datasets That Supports Flexible Input and Output Formats Jason Sahl
    Himmelfarb Health Sciences Library, The George Washington University Health Sciences Research Commons Environmental and Occupational Health Faculty Environmental and Occupational Health Publications 8-2016 NASP: an accurate, rapid method for the identification of SNPs in WGS datasets that supports flexible input and output formats Jason Sahl Darrin Lemmer Jason Travis James Schupp John Gillece See next page for additional authors Follow this and additional works at: http://hsrc.himmelfarb.gwu.edu/sphhs_enviro_facpubs Part of the Bioinformatics Commons, Integrative Biology Commons, Research Methods in Life Sciences Commons, and the Systems Biology Commons APA Citation Sahl, J., Lemmer, D., Travis, J., Schupp, J., Gillece, J., Aziz, M., & +several additional authors (2016). NASP: an accurate, rapid method for the identification of SNPs in WGS datasets that supports flexible input and output formats. Microbial Genomics, 2 (8). http://dx.doi.org/10.1099/mgen.0.000074 This Journal Article is brought to you for free and open access by the Environmental and Occupational Health at Health Sciences Research Commons. It has been accepted for inclusion in Environmental and Occupational Health Faculty Publications by an authorized administrator of Health Sciences Research Commons. For more information, please contact [email protected]. Authors Jason Sahl, Darrin Lemmer, Jason Travis, James Schupp, John Gillece, Maliha Aziz, and +several additional authors This journal article is available at Health Sciences Research Commons: http://hsrc.himmelfarb.gwu.edu/sphhs_enviro_facpubs/212 Methods Paper NASP: an accurate, rapid method for the identification of SNPs in WGS datasets that supports flexible input and output formats Jason W. Sahl,1,2† Darrin Lemmer,1† Jason Travis,1 James M.
    [Show full text]
  • Introduction to Bioinformatics (Elective) – SBB1609
    SCHOOL OF BIO AND CHEMICAL ENGINEERING DEPARTMENT OF BIOTECHNOLOGY Unit 1 – Introduction to Bioinformatics (Elective) – SBB1609 1 I HISTORY OF BIOINFORMATICS Bioinformatics is an interdisciplinary field that develops methods and software tools for understanding biologicaldata. As an interdisciplinary field of science, bioinformatics combines computer science, statistics, mathematics, and engineering to analyze and interpret biological data. Bioinformatics has been used for in silico analyses of biological queries using mathematical and statistical techniques. Bioinformatics derives knowledge from computer analysis of biological data. These can consist of the information stored in the genetic code, but also experimental results from various sources, patient statistics, and scientific literature. Research in bioinformatics includes method development for storage, retrieval, and analysis of the data. Bioinformatics is a rapidly developing branch of biology and is highly interdisciplinary, using techniques and concepts from informatics, statistics, mathematics, chemistry, biochemistry, physics, and linguistics. It has many practical applications in different areas of biology and medicine. Bioinformatics: Research, development, or application of computational tools and approaches for expanding the use of biological, medical, behavioral or health data, including those to acquire, store, organize, archive, analyze, or visualize such data. Computational Biology: The development and application of data-analytical and theoretical methods, mathematical modeling and computational simulation techniques to the study of biological, behavioral, and social systems. "Classical" bioinformatics: "The mathematical, statistical and computing methods that aim to solve biological problems using DNA and amino acid sequences and related information.” The National Center for Biotechnology Information (NCBI 2001) defines bioinformatics as: "Bioinformatics is the field of science in which biology, computer science, and information technology merge into a single discipline.
    [Show full text]
  • Can Hybridization Be Detected Between African Wolf and Sympatric Canids?
    Can hybridization be detected between African wolf and sympatric canids? Sunniva Helene Bahlk Master of Science Thesis 2015 Center for Ecological and Evolutionary Synthesis Department of Bioscience Faculty of Mathematics and Natural Science University of Oslo, Norway © Sunniva Helene Bahlk 2015 Can hybridization be detected between African wolf and sympatric canids? Sunniva Helene Bahlk http://www.duo.uio.no/ Print: Reprosentralen, University of Oslo II Table of contents Acknowledgments ...................................................................................................................... 1 Abstract ...................................................................................................................................... 3 Introduction ................................................................................................................................ 5 The species in the genus Canis are closely related and widely distributed ........................... 5 Next-generation sequencing and bioinformatics .................................................................. 6 The concepts of hybridization and introgression ................................................................... 8 The aim of my study ............................................................................................................... 9 Materials and Methods ............................................................................................................ 11 Origin of the samples and laboratory protocols .................................................................
    [Show full text]
  • Biocreative 2012 Proceedings
    Proceedings of 2012 BioCreative Workshop April 4 -5, 2012 Washington, DC USA Editors: Cecilia Arighi Kevin Cohen Lynette Hirschman Martin Krallinger Zhiyong Lu Carolyn Mattingly Alfonso Valencia Thomas Wiegers John Wilbur Cathy Wu 2012 BioCreative Workshop Proceedings Table of Contents Preface…………………………………………………………………………………….......... iv Committees……………………………………………………………………………………... v Workshop Agenda…………………………………………………………………………….. vi Track 1 Collaborative Biocuration-Text Mining Development Task for Document Prioritization for Curation……………………………………..……………………………………………….. 2 T Wiegers, AP Davis, and CJ Mattingly System Description for the BioCreative 2012 Triage Task ………………………………... 20 S Kim, W Kim, CH Wei, Z Lu and WJ Wilbur Ranking of CTD articles and interactions using the OntoGene pipeline ……………..….. 25 F Rinaldi, S Clematide and S Hafner Selection of relevant articles for curation for the Comparative Toxicogenomic Database…………………………………………………………………………………………. 31 D Vishnyakova, E Pasche and P Ruch CoIN: a network exploration for document triage………………………………................... 39 YY Hsu and HY Kao DrTW: A Biomedical Term Weighting Method for Document Recommendation ………... 45 JH Ju, YD Chen and JH Chiang C2HI: a Complete CHemical Information decision system……………………………..….. 52 CH Ke, TLM Lee and JH Chiang Track 2 Overview of BioCreative Curation Workshop Track II: Curation Workflows….…………... 59 Z Lu and L Hirschman WormBase Literature Curation Workflow ……………………………………………………. 66 KV Auken, T Bieri, A Cabunoc, J Chan, Wj Chen, P Davis, A Duong, R Fang, C Grove, Tw Harris, K Howe, R Kishore, R Lee, Y Li, Hm Muller, C Nakamura, B Nash, P Ozersky, M Paulini, D Raciti, A Rangarajan, G Schindelman, Ma Tuli, D Wang, X Wang, G Williams, K Yook, J Hodgkin, M Berriman, R Durbin, P Kersey, J Spieth, L Stein and Pw Sternberg Literature curation workflow at The Arabidopsis Information Resource (TAIR)…..……… 72 D Li, R Muller, TZ Berardini and E Huala Summary of Curation Process for one component of the Mouse Genome Informatics Database Resource …………………………………………………………………………....
    [Show full text]
  • A Comprehensive SARS-Cov-2 Genomic Analysis Identifies Potential Targets for Drug Repurposing
    PLOS ONE RESEARCH ARTICLE A comprehensive SARS-CoV-2 genomic analysis identifies potential targets for drug repurposing 1☯ 1☯ 2,3 Nithishwer Mouroug Anand , Devang Haresh Liya , Arpit Kumar PradhanID *, Nitish Tayal4, Abhinav Bansal5, Sainitin Donakonda6, Ashwin Kumar Jainarayanan7,8* 1 Department of Physical Sciences, Indian Institute of Science Education and Research, Mohali, India, 2 Graduate School of Systemic Neuroscience, Ludwig Maximilian University of Munich, Munich, Germany, 3 Klinikum rechts der Isar, Technische UniversitaÈt MuÈnchen, MuÈnchen, Germany, 4 Department of Biological Sciences, Indian Institute of Science Education and Research, Mohali, India, 5 Department of Chemical a1111111111 Sciences, Indian Institute of Science Education and Research, Mohali, India, 6 Institute of Molecular a1111111111 Immunology and Experimental Oncology, Klinikum rechts der Isar, Technische UniversitaÈt MuÈnchen, a1111111111 MuÈnchen, Germany, 7 The Kennedy Institute of Rheumatology, University of Oxford, Oxford, United a1111111111 Kingdom, 8 Interdisciplinary Bioscience DTP, University of Oxford, Oxford, United Kingdom a1111111111 ☯ These authors contributed equally to this work. * [email protected] (AKP); [email protected] (AKJ) OPEN ACCESS Abstract Citation: Anand NM, Liya DH, Pradhan AK, Tayal N, The severe acute respiratory syndrome coronavirus 2 (SARS-CoV-2) which is a novel Bansal A, Donakonda S, et al. (2021) A comprehensive SARS-CoV-2 genomic analysis human coronavirus strain (HCoV) was initially reported in December 2019 in Wuhan City, identifies potential targets for drug repurposing. China. This acute infection caused pneumonia-like symptoms and other respiratory tract ill- PLoS ONE 16(3): e0248553. https://doi.org/ ness. Its higher transmission and infection rate has successfully enabled it to have a global 10.1371/journal.pone.0248553 spread over a matter of small time.
    [Show full text]
  • Computational Biology and Bioinformatics
    DEPARTMENT OF COMPUTATIONAL BIOLOGY AND BIOINFORMATICS UNIVERSITY OF KERALA MSc. PROGRAMME IN COMPUTATIONAL BIOLOGY SYLLABUS Under Credit and Semester System w. e. f. 2017 Admissions DEPARTMENT OF COMPUTATIONAL BIOLOGY AND BIOINFORMATICS UNIVERSITY OF KERALA MSc. PROGRAMME IN COMPUTATIONAL BIOLOGY SYLLABUS PROGRAMME OBJECTIVES Aims to equip students with basic computational and mathematical skill To impart basic life science knowledge To acquire advanced computational and modelling skills required to address problems of life sciences for computational perspectives MSc. Syllabus of the Programme Number of Semester Course Code Name of the course Credits Core Courses BIN-C-411 Introduction to Life Sciences & Bioinformatics 4 BIN-C-412 Applied Mathematics 4 BIN-C-413 Web programming and Databases 4 I BIN-C-414 Bioinformatics Lab I 3 Internal Electives BIN-E-415 (i) Python Programming (E) 2 BIN-E-415 (ii) Seminar I (E) 2 BIN-E-415 (iii) Programming in R (E) 2 BIN-E-415 (iv) Communication skill in English (Elective skill course) 2 Core Courses BIN-C-421 Creativity, Research & Knowledge Management 4 BIN-C-422 Fundamentals of Molecular Biology 4 BIN-C-423 Computational Genomics 4 BIN-C-424 Bioinformatics Lab II 3 II Internal Electives BIN-E-425 (i) Perl and BioPerl (E) 4 BIN-E-425 (ii) Case Study (E) 2 BIN-E-425 (iii) Android App Development for Bioinformatics(E) 2 BIN-E-425 (iv) Negotiated Studies(E) 2 BIN-E-425 (v) Communication skill in English (Elective skill course) 2 Core Courses BIN-C-431 Proteomics and CADD 4 BIN-C-432 Phylogenetics
    [Show full text]
  • TESE Kelma Sirleide De Souza.Pdf
    UNIVERSIDADE FEDERAL DE PERNAMBUCO CENTRO DE CIÊNCIAS BIOLÓGICAS PROGRAMA DE PÓS-GRADUAÇÃO EM CIÊNCIAS BIOLÓGICAS KELMA SIRLEIDE DE SOUZA Efeitos bioquímicos e genotóxicos de poluentes na ostra Crassostrea sp., na região norte do complexo estuarino Canal de Santa Cruz, litoral norte de Pernambuco Recife 2016 KELMA SIRLEIDE DE SOUZA Efeitos bioquímicos e genotóxicos de poluentes na ostra Crassostrea sp., na região norte do complexo estuarino Canal de Santa Cruz, litoral norte de Pernambuco Tese apresentada ao Programa de Pós- Graduação em Ciências Biológicas da Universidade Federal de Pernambuco como pré- requisito para a obtenção do grau de doutor em Ciências Biológicas. Orientador: Prof. Dr. Ranilson de Souza Bezerra Co- Orientador: Dr. Caio Rodrigo Dias de Assis Recife 2016 Catalogação na fonte Elaine Barroso CRB 1728 Souza, Kelma Sirleide de Efeitos bioquímicos e genotóxicos de poluentes na ostra Crassostrea sp. na região norte do complexo estuarino Canal de Santa Cruz, litoral norte de Pernambuco / Kelma Sirleide de Souza - Recife: O Autor, 2016. 91 folhas: il., fig., tab. Orientador: Ranilson de Souza Bezerra Coorientador: Caio Rodrigo Silva de Assis Tese (doutorado) – Universidade Federal de Pernambuco. Centro de Biociências. Ciências Biológicas, 2016. Inclui referências 1. Ostras 2. Estuários 3. Santa Cruz, Canal de (PE) I. Bezerra, Ranilson de Souza (orient.) II. Assis, Caio Rodrigo Silva de (coorient.) III. Título 594.4 CDD (22.ed.) UFPE/CB-2017- 406 KELMA SIRLEIDE DE SOUZA Efeitos bioquímicos e genotóxicos de poluentes na ostra Crassostrea sp., na região norte do complexo estuarino Canal de Santa Cruz, litoral norte de Pernambuco Tese apresentada ao Programa de Pós- Graduação em Ciências Biológicas da Universidade Federal de Pernambuco como pré- requisito para a obtenção do grau de doutor em Ciências Biológicas.
    [Show full text]
  • An Efficient Pipeline for Assaying Whole-Genome Plastid Variation for Population Genetics and Phylogeography
    Portland State University PDXScholar Dissertations and Theses Dissertations and Theses Spring 6-2-2017 An Efficient Pipeline for Assaying Whole-Genome Plastid Variation for Population Genetics and Phylogeography Brendan F. Kohrn Portland State University Follow this and additional works at: https://pdxscholar.library.pdx.edu/open_access_etds Part of the Biology Commons, and the Plant Sciences Commons Let us know how access to this document benefits ou.y Recommended Citation Kohrn, Brendan F., "An Efficient Pipeline for Assaying Whole-Genome Plastid Variation for Population Genetics and Phylogeography" (2017). Dissertations and Theses. Paper 4007. https://doi.org/10.15760/etd.5891 This Thesis is brought to you for free and open access. It has been accepted for inclusion in Dissertations and Theses by an authorized administrator of PDXScholar. Please contact us if we can make this document more accessible: [email protected]. An Efficient Pipeline for Assaying Whole-Genome Plastid Variation for Population Genetics and Phylogeography by Brendan F. Kohrn A thesis submitted in partial fulfillment of the requirements for the degree of Master of Science in Biology Thesis Committee: Mitch Cruzan, Chair Sarah Eppley Rahul Raghavan Portland State University 2017 © 2017 Brendan F. Kohrn i Abstract Tracking seed dispersal using traditional, direct measurement approaches is difficult and generally underestimates dispersal distances. Variation in chloroplast haplotypes (cpDNA) offers a way to trace past seed dispersal and to make inferences about factors contributing to present patterns of dispersal. Although cpDNA generally has low levels of intraspecific variation, this can be overcome by assaying the whole chloroplast genome. Whole-genome sequencing is more expensive, but resources can be conserved by pooling samples.
    [Show full text]
  • Deep Sampling of Hawaiian Caenorhabditis Elegans Reveals
    RESEARCH ARTICLE Deep sampling of Hawaiian Caenorhabditis elegans reveals high genetic diversity and admixture with global populations Tim A Crombie1, Stefan Zdraljevic1,2, Daniel E Cook1,2, Robyn E Tanny1, Shannon C Brady1,2, Ye Wang1, Kathryn S Evans1,2, Steffen Hahnel1, Daehan Lee1, Briana C Rodriguez1, Gaotian Zhang1, Joost van der Zwagg1, Karin Kiontke3, Erik C Andersen1* 1Department of Molecular Biosciences, Northwestern University, Evanston, United States; 2Interdisciplinary Biological Sciences Program, Northwestern University, Evanston, United States; 3Department of Biology, New York University, New York, United States Abstract Hawaiian isolates of the nematode species Caenorhabditis elegans have long been known to harbor genetic diversity greater than the rest of the worldwide population, but this observation was supported by only a small number of wild strains. To better characterize the niche and genetic diversity of Hawaiian C. elegans and other Caenorhabditis species, we sampled different substrates and niches across the Hawaiian islands. We identified hundreds of new Caenorhabditis strains from known species and a new species, Caenorhabditis oiwi. Hawaiian C. elegans are found in cooler climates at high elevations but are not associated with any specific substrate, as compared to other Caenorhabditis species. Surprisingly, admixture analysis revealed evidence of shared ancestry between some Hawaiian and non-Hawaiian C. elegans strains. We suggest that the deep diversity we observed in Hawaii might represent patterns of ancestral C. elegans *For correspondence: genetic diversity in the species before human influence. [email protected] Competing interests: The authors declare that no Introduction competing interests exist. Over the last 50 years, the nematode Caenorhabditis elegans has been central to many important Funding: See page 21 discoveries in the fields of developmental, cellular, and molecular biology.
    [Show full text]
  • Methodology in Phylogenetics
    Bovine TB Workshop 2015 Methodology in Phylogenetics Joseph Crisp BBSRC funded PhD Student Rowland Kao Ruth Zadoks [email protected] NGS Technologies Next Generation Sequencing Platforms • Cheap and fast alternatives to Sanger sequencing methods • Prone to error production • Provides a huge amount of data that can be used to establish the validity of variation observed Metzer 2010 – Sequencing technologies – the next generation Raw Data FASTQ File @InstrumentName : RunId : FlowCellId : Lane : TileNumber : X-coord : Y-coord PairId : Filtered? : Bit CGCGTTCATGTGCGGCGCCGGCGCTGGTTTCCATCGGTCGATTCGGACGGCAAACATCGACCGCAGGATCCGCCGTACCATGTCCGACA GGCGCCCCTTGGGTAGATTGCCGTCGGCGTAGGCGGCACGCAGGCGGACGGAGAGTGCTTCCGAGTGCCACGGCGCTGAATCGATCCG CGCCGCGCACCTTTGGTCCAGGGCGGCCAGCGCGCACTCCCAGCTGGGTGTTTCGGCCCCATCCGCACTCACCC + 1>1>>AA1@333AA11AE00AEAE///FH0BFFGB/E/?/>FHH/B//>EEGE0>0BGE0>//E/C//1<C?AFC///<FGF1?1?C?-<FF-@??- C./CGG0:0C0;C0-.;C-?A@--.:?-@-@B@<@=-9--9---:;-9///;//-----/;/9----9;99///;-9----@;-9-;9-9-;//;B-9/B/9-;9@--@AE@@-;- ;-BB-9/-//;A9-;B-/--------9------//;-- Cock et al. 2010 – The Sanger FASTQ file format for sequences with quality scores, and the Solexa/Illumina FASTQ variants FASTQC Raw Data Andrews 2010 – FastQC: A quality control tool for high throughput sequence data Trimming ATGATAGCATAGGGATTTTACATACATACATACAGATACATAGGATCTACAGCGC ATGATAGCATAGGGATTTTACATACATACATACAGATACATAGGATCTACAGCGC Fabbro et al. 2013 – An extensive evaluation of read trimming effects on Illumina NGS data analysis FASTQC Raw Data Andrews 2010 – FastQC: A quality
    [Show full text]
  • Phylogenetic Analyses of Sites in Different Protein Structural Environments Result in Distinct Placements of the Metazoan Root
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 27 October 2019 doi:10.20944/preprints201910.0302.v1 Peer-reviewed version available at Biology 2020, 9, 64; doi:10.3390/biology9040064 Article Phylogenetic Analyses of Sites in Different Protein Structural Environments Result in Distinct Placements of the Metazoan Root Akanksha Pandey 1 and Edward L. Braun 1,2,* 1 Department of Biology, University of Florida; [email protected] 2 Genetics Institute, University of Florida; [email protected] * Correspondence: [email protected] Abstract: Phylogenomics, the use of large datasets to examine phylogeny, has revolutionized the study of evolutionary relationships. However, genome-scale data have not been able to resolve all relationships in the tree of life; this could reflect, at least in part, the poor-fit of the models used to analyze heterogeneous datasets. Some of the heterogeneity may reflect the different patterns of selection on proteins based on their structures. To test that hypothesis, we developed a pipeline to divide phylogenomic protein datasets into subsets based on secondary structure and relative solvent accessibility. We then tested whether amino acids in different structural environments had distinct signals for the topology of the deepest branches in the metazoan tree. The most striking difference in phylogenetic signal reflected relative solvent accessibility; analyses of exposed sites (on the surface of proteins) yielded a tree that placed ctenophores sister to all other animals whereas sites buried inside proteins yielded a tree with a sponge-ctenophore clade. These differences in phylogenetic signal were not ameliorated when we repeated our analyses using the CAT model, a mixture model that is often used for analyses of protein datasets.
    [Show full text]