Package treeio. January 1, 2019

Size: px
Start display at page:

Download "Package treeio. January 1, 2019"

Transcription

1 Package treeio January 1, 2019 Title Base Classes and Functions for Phylogenetic Tree Input and Output Version Base classes and functions for parsing and exporting phylogenetic trees. 'treeio' supports parsing analysis findings from commonly used software packages, allows linking external data to phylogeny and merging tree data obtained from different sources. It also supports exporting phylogenetic tree with heterogeneous associated data to a single tree. Depends R (>= 3.4.0) Imports ape, dplyr, jsonlite, magrittr, methods, rlang, rvcheck, tibble, tidytree, utils Suggests ggplot2, ggtree, knitr, prettydoc, testthat, tidyr VignetteBuilder knitr ByteCompile true License Artistic-2.0 URL BugReports LazyData true biocviews Software, Annotation, Clustering, DataImport, DataRepresentation, Alignment, MultipleSequenceAlignment RoxygenNote git_url git_branch master git_last_commit 07230cb git_last_commit_date Date/Publication Author Guangchuang Yu [aut, cre] (< Tommy Tsan-Yuk Lam [ctb, ths], Casey Dunn [ctb], Bradley Jones [ctb], Tyler Bradley [ctb] Maintainer Guangchuang Yu <guangchuangyu@gmail.com> 1

2 2 R topics documented: R topics documented: as.treedata.phylo drop.tip get.placements get.tree get.treetext getnodenum is.ggtree jplace-class label_branch_paml mask merge_tree Nnode.treedata phypml print.beastlist raxml2nwk read.astral read.beast read.codeml read.codeml_mlc read.fasta read.hyphy read.hyphy.seq read.iqtree read.jplace read.jtree read.newick read.nhx read.paml_rst read.phylip read.phylip.seq read.phylip.tree read.phylot read.r8s read.raxml rename_taxa root.phylo taxa_rename tree_subset write.beast write.jplace write.jtree Index 26

3 as.treedata.phylo 3 as.treedata.phylo as.treedata convert phylo to treedata ## S3 method for class 'phylo' as.treedata(tree, boot = NULL,...) tree boot Details input tree, a phylo object optional, can be bootstrap value from ape::boot.phylo... additional parameters converting phylo object to treedata object drop.tip drop.tip method drop.tip method drop.tip method drop.tip(object, tip,...) drop.tip(object, tip,...) ## S4 method for signature 'phylo' drop.tip(object, tip,...) object tip A treedata or phylo object a vector of mode numeric or character specifying the tips to delete... additional parameters

4 4 get.placements updated object Casey Dunn and Guangchuang Yu Source drop.tip for phylo object is a wrapper method of ape::drop.tip from the ape package. The documentation you should read for the drop.tip function can be found here: drop.tip See Also drop.tip nhx <- system.("extdata/nhx", "ADH.nhx", package="treeio") nhx <- read.nhx(nhx) drop.tip(nhx, c("adh2", "ADH1")) get.placements get.placements access placement information get.placements(tree,...) ## S3 method for class 'jplace' get.placements(tree, by = "best",...) tree tree object... additional parameters by one of best and all placement tibble

5 get.tree 5 get.tree get.tree access phylo slot get.tree(x,...) x tree object... additional parameters phylo object get.treetext get.treetext method access tree text (newick text) from tree object get.treetext(object,...) ## S4 method for signature 'treedata' get.treetext(object) object treedata object... additional parameter phylo object

6 6 is.ggtree getnodenum getnodenum calculate total number of nodes getnodenum(tree) Nnode2(tree) tree tree object number Guangchuang Yu getnodenum(rtree(30)) Nnode2(rtree(30)) is.ggtree is.ggtree test whether input object is produced by ggtree function is.ggtree(x) x object TRUE or FALSE

7 jplace-class 7 jplace-class Class "jplace" This class stores phylogenetic placements Class "jplace" This class stores phylogenetic placements Slots phylo phylo object for tree structure treetext newick tree string data associated data extrainfo extra information, reserve for merge_tree tree placements reserve for jplace to store placement information info extra information, e.g. metadata, software version etc. label_branch_paml label_branch_paml label branch for PAML to infer selection pressure using branch model label_branch_paml(tree, node, label) tree phylo object node node number label label of branch, e.g. #1 updated phylo object

8 8 merge_tree mask mask site mask mask(tree_object, field, site, mask_site = FALSE) tree_object field site mask_site tree object selected field site if TRUE, site will be masked. if FALSE, selected site will not be masked, while other sites will be masked. updated tree object Guangchuang Yu merge_tree merge_tree merge two tree object merge_tree(obj1, obj2) obj1 tree object 1 obj2 tree object 2 tree object Guangchuang Yu

9 Nnode.treedata 9 Nnode.treedata Nnode number of nodes ## S3 method for class 'treedata' Nnode(phy, internal.only = TRUE,...) phy internal.only treedata object whether only count internal nodes... additional parameters number of nodes Nnode(rtree(30)) phypml treeanno.pml tree annotation of sequence substitution by comparing to parent node phypml(pmltree, type = "ml") pmltree type tree in pml object, output of phangorn::optim.pml one of ml and bayes for inferring ancestral sequences phangorn object

10 10 raxml2nwk Yu Guangchuang print.beastlist print print information of a list of beast trees ## S3 method for class 'beastlist' print(x,...) x... no used message a list of beast object raxml2nwk raxml2nwk convert raxml bootstrap tree to newick format raxml2nwk(in, out = "raxml.tree") in out input output newick Guangchuang Yu

11 read.astral 11 read.astral read.astral parse ASTRAL output newick text read.astral() ASTRAL Newick treedata object Guangchuang Yu tt <- "((species1,(species2,species3)'[pp1=0.75;pp2=0.24;pp3=0.01]': )'[pp1=0.98;pp2=0.02;p read.astral(textconnection(tt)) read.beast read.beast read beast output read.beast() read.mrbayes() beast beast object Guangchuang Yu

12 12 read.codeml_mlc <- system.("extdata/beast", "beast_mcc.tree", package="treeio") read.beast() read.codeml read.codeml read baseml output read.codeml(rst, mlc, tree = "mlc", type = "Joint") rst mlc tree type rst mlc one of mlc or rst one of Marginal or Joint A treedata object Guangchuang Yu rst <- system.("extdata/paml_codeml", "rst", package="treeio") mlc <- system.("extdata/paml_codeml", "mlc", package="treeio") read.codeml(rst, mlc) read.codeml_mlc read.codeml_mlc read mlc of codeml output read.codeml_mlc(mlc) mlc mlc

13 read.fasta 13 A codeml_mlc object ygc mlc <- system.("extdata/paml_codeml", "mlc", package="treeio") read.codeml_mlc(mlc) read.fasta read.fasta read FASTA read.fasta(fasta) fasta fasta Details This function supports both DNA or AA sequences DNAbin or AAbin object

14 14 read.hyphy.seq read.hyphy read.hyphy read HYPHY output read.hyphy(nwk, ancseq, tip.fas = NULL) nwk ancseq tip.fas tree in nwk format, one of hyphy output ancestral sequence in nexus format, one of hyphy output tip sequence A hyphy object Guangchuang Yu nwk <- system.("extdata/hyphy", "labelledtree.tree", package="treeio") ancseq <- system.("extdata/hyphy", "ancseq.nex", package="treeio") read.hyphy(nwk, ancseq) read.hyphy.seq read.hyphy.seq parse sequences from hyphy output read.hyphy.seq() output of hyphy ancestral sequence inference; nexus format DNAbin object

15 read.iqtree 15 ancseq <- system.("extdata/hyphy", "ancseq.nex", package="treeio") read.hyphy.seq(ancseq) read.iqtree read.iqtree parse IQ-TREE output read.iqtree() IQ-TREE Newick text treedata object Guangchuang Yu read.jplace read.jplace read jplace read.jplace() jplace jplace instance

16 16 read.newick Guangchuang Yu jp <- system.("extdata", "sample.jplace", package="treeio") read.jplace(jp) read.jtree read.jtree Import tree data from jtree, which is JSON-based text and probably output by write.jtree read.jtree() tree treedata object read.newick read.newick read newick tree read.newick(, node.label = "label",...) newick node.label parse node label as label or support value... additional parameter, passed to read.tree

17 read.nhx 17 phylo or treedata object read.nhx read.nhx read nhx tree read.nhx() nhx nhx object Guangchuang Yu nhx <- system.("extdata/nhx", "ADH.nhx", package="treeio") read.nhx(nhx) read.paml_rst read.paml_rst read rst from paml (both baseml and codeml) output read.paml_rst(rst, type = "Joint") rst type rst one of Marginal or Joint

18 18 read.phylip A treedata object Guangchuang Yu rst <- system.("extdata/paml_baseml", "rst", package="treeio") read.paml_rst(rst) read.phylip read.phylip parsing phylip tree format read.phylip() phylip an instance of phylip Guangchuang Yu phy <- system.("extdata", "sample.phy", package="treeio") read.phylip(phy)

19 read.phylip.seq 19 read.phylip.seq read.phylip.seq read aligned sequences from phylip format read.phylip.seq() phylip, currently only sequential format is supported DNAbin object References read.phylip.tree read.phylip.tree parse tree from phylip read.phylip.tree() phylip phylo or multiphylo object

20 20 read.r8s read.phylot read.phylot parse output from phylot read.phylot(,...) newick tree... additional parameters to read.tree phylo object References read.r8s read.r8s parse output from r8s read.r8s() r8s output log multiphylo object Guangchuang Yu

21 read.raxml 21 read.r8s(system.("extdata/r8s", "H3_r8s_output.log", package="treeio")) read.raxml read.raxml parse RAxML bootstrapping analysis output read.raxml() RAxML bootstrapping analysis output treedata object Guangchuang Yu raxml_ <- system.("extdata/raxml", "RAxML_bipartitionsBranchLabels.H3", package="treeio") read.raxml(raxml_) rename_taxa rename_taxa rename tip label of phylogenetic tree rename_taxa(tree, data, key, value) tree data key value tree object, either treedata or phylo data frame column in data that match tip label column in data for rename tip label

22 22 taxa_rename tree object Guangchuang Yu root.phylo root re-root a tree ## S3 method for class 'phylo' root(object, node,...) ## S3 method for class 'treedata' root(object, node,...) object tree object node node to reroot... additional parameters rerooted tree Guangchuang Yu taxa_rename taxa_rename rename taxa taxa_rename(tree, name)

23 tree_subset 23 tree name tree object a two column data.frame contains original name in 1st column and new name in 2nd column updated tree object with new taxa name tree_subset Subset tree objects by related nodes This function allows for a tree object to be subset by specifying a node and returns all related nodes within a selected number of levels tree_subset(tree, node, levels_back = 5, group_node = TRUE) ## S3 method for class 'phylo' tree_subset(tree, node, levels_back = 5, group_node = TRUE) ## S3 method for class 'treedata' tree_subset(tree, node, levels_back = 5, group_node = TRUE) tree node levels_back group_node a tree object of class phylo either a tip label or a node number for the given tree that will be the focus of the subsetted tree a number specifying how many nodes back from the selected node the subsetted tree should include whether add grouping information of selected node Details This function will take a tree and a specified node from that tree and subset the tree showing all relatives back to a specified number of nodes. This function allows for a combination of ancestor and offspring to return a subsetted tree that is of class phylo. This allows for easy graphing of the tree with ggtree

24 24 write.beast ## Not run: nwk <- system.("extdata", "sample.nwk", package="treeio") tree <- read.tree(nwk) sub_tree <- tree_subset(tree, node = "A", levels_back = 3) ggtree(sub_tree) + geom_tiplab() + geom_nodelab() ## End(Not run) ## Not run: nwk <- system.("extdata", "sample.nwk", package="treeio") tree <- read.tree(nwk) sub_tree <- tree_subset(tree, node = "A", levels_back = 3) ggtree(sub_tree) + geom_tiplab() + geom_nodelab() ## End(Not run) write.beast write.beast Export treedata object to BEAST NEXUS. This function was adopted and modified from ape::write.nexus write.beast(treedata, = "", translate = TRUE, tree.name = "UNTITLED") treedata translate tree.name treedata object output. If = "", print the output content on screen whether translate taxa labels name of the tree output or content on screen nhx <- system.("extdata/nhx", "phyldog.nhx", package="treeio") nhx <- read.nhx(nhx) write.beast(nhx)

25 write.jplace 25 write.jplace write.jplace generate jplace write.jplace(nwk, data, out) nwk data out tree in newick format annotation data jplace output jplace ygc write.jtree write.jtree Export treedata object to json tree write.jtree(treedata, = "") treedata treedata object output. If = "", print the output content on screen output or content on screen

26 Index Topic classes jplace-class, 7 as.treedata.phylo, 3 drop.tip, 3, 4 drop.tip,phylo (drop.tip), 3 drop.tip,phylo-method (drop.tip), 3 drop.tip,treedata (drop.tip), 3 drop.tip,treedata-method (drop.tip), 3 get.placements, 4 get.tree, 5 get.treetext, 5 get.treetext,treedata-method (get.treetext), 5 getnodenum, 6 is.ggtree, 6 read.newick, 16 read.nhx, 17 read.paml_rst, 17 read.phylip, 18 read.phylip.seq, 19 read.phylip.tree, 19 read.phylot, 20 read.r8s, 20 read.raxml, 21 rename_taxa, 21 root.phylo, 22 root.treedata (root.phylo), 22 taxa_rename, 22 tree_subset, 23 write.beast, 24 write.jplace, 25 write.jtree, 25 jplace-class, 7 label_branch_paml, 7 mask, 8 merge_tree, 8 Nnode.treedata, 9 Nnode2 (getnodenum), 6 phypml, 9 print.beastlist, 10 raxml2nwk, 10 read.astral, 11 read.beast, 11 read.codeml, 12 read.codeml_mlc, 12 read.fasta, 13 read.hyphy, 14 read.hyphy.seq, 14 read.iqtree, 15 read.jplace, 15 read.jtree, 16 read.mrbayes (read.beast), 11 26

Package treeio. April 1, 2018

Package treeio. April 1, 2018 Package treeio April 1, 2018 Title Base Classes and Functions for Phylogenetic Tree Input and Output Version 1.3.13 Base classes and functions for parsing and exporting phylogenetic trees. 'treeio' supports

More information

Package tidytree. June 13, 2018

Package tidytree. June 13, 2018 Package tidytree June 13, 2018 Title A Tidy Tool for Phylogenetic Tree Data Manipulation Version 0.1.9 Phylogenetic tree generally contains multiple components including node, edge, branch and associated

More information

Package ggtree. March 1, 2018

Package ggtree. March 1, 2018 Type Package Package ggtree March 1, 2018 Title an R package for visualization and annotation of phylogenetic trees with their covariates and other associated data Version 1.11.6 Maintainer

More information

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7

Package ggimage. R topics documented: November 1, Title Use Image in 'ggplot2' Version 0.0.7 Title Use Image in 'ggplot2' Version 0.0.7 Package ggimage November 1, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package robotstxt. November 12, 2017

Package robotstxt. November 12, 2017 Date 2017-11-12 Type Package Package robotstxt November 12, 2017 Title A 'robots.txt' Parser and 'Webbot'/'Spider'/'Crawler' Permissions Checker Version 0.5.2 Provides functions to download and parse 'robots.txt'

More information

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0

Package ggimage. R topics documented: December 5, Title Use Image in 'ggplot2' Version 0.1.0 Title Use Image in 'ggplot2' Version 0.1.0 Package ggimage December 5, 2017 Supports image files and graphic objects to be visualized in 'ggplot2' graphic system. Depends R (>= 3.3.0), ggplot2 Imports

More information

Package SNPediaR. April 9, 2019

Package SNPediaR. April 9, 2019 Title Query data from SNPedia Version 1.8.0 Date 2015-09-26 Package SNPediaR April 9, 2019 Description SNPediaR provides some tools for downloading and parsing data from the SNPedia web site .

More information

Package messaging. May 27, 2018

Package messaging. May 27, 2018 Type Package Package messaging May 27, 2018 Title Conveniently Issue Messages, Warnings, and Errors Version 0.1.0 Description Provides tools for creating and issuing nicely-formatted text within R diagnostic

More information

Package philr. August 25, 2018

Package philr. August 25, 2018 Type Package Package philr August 25, 2018 Title Phylogenetic partitioning based ILR transform for metagenomics data Version 1.6.0 Date 2017-04-07 Author Justin Silverman Maintainer Justin Silverman

More information

Package phylotools. December 10, 2017

Package phylotools. December 10, 2017 Type Package Title Phylogenetic Tools for Eco-Phylogenetics Version 0.2.2 Date 2017-12-08 Author Jinlong Zhang [aut, cre], Nancai Pei [ctb], Xiangcheng Mi [ctb] Package phylotools December 10, 2017 Maintainer

More information

Package qualmap. R topics documented: September 12, Type Package

Package qualmap. R topics documented: September 12, Type Package Type Package Package qualmap September 12, 2018 Title Opinionated Approach for Digitizing Semi-Structured Qualitative GIS Data Version 0.1.1 Provides a set of functions for taking qualitative GIS data,

More information

Package oec. R topics documented: May 11, Type Package

Package oec. R topics documented: May 11, Type Package Type Package Package oec May 11, 2018 Title Observatory of Economic Complexity API Wrapper and Utility Program Version 2.7.8 Date 2018-06-11 Maintainer Mauricio Vargas S. URL https://cran.r-project.org/package=oec

More information

Package rgho. R topics documented: January 18, 2017

Package rgho. R topics documented: January 18, 2017 Package rgho January 18, 2017 Title Access WHO Global Health Observatory Data from R Version 1.0.1 Author Antoine Filipovic-Pierucci [aut,cre] Maintainer Antoine Filipovic-Pierucci

More information

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features

Package cattonum. R topics documented: May 2, Type Package Version Title Encode Categorical Features Type Package Version 0.0.2 Title Encode Categorical Features Package cattonum May 2, 2018 Functions for dummy encoding, frequency encoding, label encoding, leave-one-out encoding, mean encoding, median

More information

Package enrichplot. September 29, 2018

Package enrichplot. September 29, 2018 Package enrichplot September 29, 2018 Title Visualization of Functional Enrichment Result Version 1.1.7 The 'enrichplot' package implements several visualization methods for interpreting functional enrichment

More information

Package jpmesh. December 4, 2017

Package jpmesh. December 4, 2017 Type Package Title Utilities for Japanese Mesh Code Version 1.0.1 Package jpmesh December 4, 2017 Maintainer Shinya Uryu Helpful functions for using mesh code (80km to 125m) data

More information

Package OmaDB. R topics documented: December 19, Title R wrapper for the OMA REST API Version Author Klara Kaleb

Package OmaDB. R topics documented: December 19, Title R wrapper for the OMA REST API Version Author Klara Kaleb Title R wrapper for the OMA REST API Version 1.2.0 Author Klara Kaleb Package OmaDB December 19, 2018 Maintainer Klara Kaleb , Adrian Altenhoff A

More information

Package facerec. May 14, 2018

Package facerec. May 14, 2018 Package facerec Type Package Title An Interface for Face Recognition Version 0.1.0 Date 2018-05-14 May 14, 2018 URL https://github.com/methodds/facerec BugReports https://github.com/methodds/facerec/issues

More information

Package phylogram. June 15, 2017

Package phylogram. June 15, 2017 Type Package Title Dendrograms for Evolutionary Analysis Version 1.0.1 Author [aut, cre] Package phylogram June 15, 2017 Maintainer Contains functions for importing and eporting

More information

Package tidylpa. March 28, 2018

Package tidylpa. March 28, 2018 Type Package Title Easily Carry Out Latent Profile Analysis Version 0.1.3 Package tidylpa March 28, 2018 An interface to the 'mclust' package to easily carry out latent profile analysis (``LPA''). Provides

More information

Package IsoCorrectoR. R topics documented:

Package IsoCorrectoR. R topics documented: Package IsoCorrectoR March 19, 2019 Title Correction for natural isotope abundance and tracer purity in MS and MS/MS data from stable isotope labeling experiments Version 1.0.5 Imports dplyr, magrittr,

More information

Package statsdk. September 30, 2017

Package statsdk. September 30, 2017 Type Package Title A Wrapper for the API of Statistics Denmark Version 0.1.1 Author Mikkel Freltoft Krogsholm Package statsdk September 30, 2017 Maintainer Mikkel Freltoft Krogsholm Makes

More information

Package BoSSA. R topics documented: May 9, 2018

Package BoSSA. R topics documented: May 9, 2018 Type Package Title A Bunch of Structure and Sequence Analysis Version 3.3 Date 2018-05-09 Author Pierre Lefeuvre Package BoSSA May 9, 2018 Maintainer Pierre Lefeuvre Depends

More information

Package fastdummies. January 8, 2018

Package fastdummies. January 8, 2018 Type Package Package fastdummies January 8, 2018 Title Fast Creation of Dummy (Binary) Columns and Rows from Categorical Variables Version 1.0.0 Description Creates dummy columns from columns that have

More information

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health

Package fingertipsr. May 25, Type Package Version Title Fingertips Data for Public Health Type Package Version 0.1.7 Title Fingertips Data for Public Health Package fingertipsr May 25, 2018 Fingertips () contains data for many indicators of public health in England.

More information

Package meme. December 6, 2017

Package meme. December 6, 2017 Title Create Meme Version 0.1.1 Package meme December 6, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package ChIPseeker. July 12, 2018

Package ChIPseeker. July 12, 2018 Type Package Package ChIPseeker July 12, 2018 Title ChIPseeker for ChIP peak Annotation, Comparison, and Visualization Version 1.16.0 Encoding UTF-8 Maintainer Guangchuang Yu

More information

Package clusterprofiler

Package clusterprofiler Type Package Package clusterprofiler December 22, 2018 Title statistical analysis and visualization of functional profiles for genes and gene clusters Version 3.10.1 Maintainer

More information

Package canvasxpress

Package canvasxpress Version 1.18.2 Package canvasxpress Title Visualization Package for CanvasXpress in R January 19, 2018 Enables creation of visualizations using the CanvasXpress framework in R. CanvasXpress is a standalone

More information

Package tidytransit. March 4, 2019

Package tidytransit. March 4, 2019 Type Package Package tidytransit March 4, 2019 Title Read, Validate, Analyze, and Map Files in the General Transit Feed Specification Version 0.3.8 Read General Transit Feed Specification (GTFS) zipfiles

More information

Package dkanr. July 12, 2018

Package dkanr. July 12, 2018 Title Client for the 'DKAN' API Version 0.1.2 Package dkanr July 12, 2018 Provides functions to facilitate access to the 'DKAN' API (), including

More information

Package NFP. November 21, 2016

Package NFP. November 21, 2016 Type Package Title Network Fingerprint Framework in R Version 0.99.2 Date 2016-11-19 Maintainer Yang Cao Package NFP November 21, 2016 An implementation of the network fingerprint

More information

Package meme. November 2, 2017

Package meme. November 2, 2017 Title Create Meme Version 0.0.7 Package meme November 2, 2017 The word 'Meme' was originated from the book, 'The Selfish Gene', authored by Richard Dawkins (1976). It is a unit of culture that is passed

More information

Package clusterprofiler

Package clusterprofiler Type Package Package clusterprofiler January 22, 2018 Title statistical analysis and visualization of functional profiles for genes and gene clusters Version 3.7.0 Maintainer

More information

Package seqcat. March 25, 2019

Package seqcat. March 25, 2019 Package seqcat March 25, 2019 Title High Throughput Sequencing Cell Authentication Toolkit Version 1.4.1 The seqcat package uses variant calling data (in the form of VCF files) from high throughput sequencing

More information

Package CytoML. October 15, 2018

Package CytoML. October 15, 2018 Type Package Title GatingML interface for opencyto Version 1.6.5 Date 2016-04-15 Author Mike Jiang Maintainer Mike Jiang Package CytoML October 15, 2018 This package is designed to

More information

Package rsppfp. November 20, 2018

Package rsppfp. November 20, 2018 Package rsppfp November 20, 2018 Title R's Shortest Path Problem with Forbidden Subpaths Version 1.0.3 Maintainer Melina Vidoni An implementation of functionalities

More information

Package docxtools. July 6, 2018

Package docxtools. July 6, 2018 Title Tools for R Markdown to Docx Documents Version 0.2.0 Language en-us Package docxtools July 6, 2018 A set of helper functions for using R Markdown to create documents in docx format, especially documents

More information

Package loggit. April 9, 2018

Package loggit. April 9, 2018 Title Effortless Exception Logging Package loggit April 9, 2018 A very simple and easy-to-use set of suspiciously-familiar functions. 'loggit' provides a set of wrappings for base R's message(), warning(),

More information

Package postal. July 27, 2018

Package postal. July 27, 2018 Type Package Title United States Postal Service API Interface Version 0.1.0 Package postal July 27, 2018 Author Amanda Dobbyn Maintainer Amanda Dobbyn

More information

Package guardianapi. February 3, 2019

Package guardianapi. February 3, 2019 Package guardianapi February 3, 2019 Title Access 'The Guardian' Newspaper Open Data API Version 0.1.0 Access to the 'Guardian' open API , containing all articles

More information

Package markophylo. December 31, 2015

Package markophylo. December 31, 2015 Type Package Package markophylo December 31, 2015 Title Markov Chain Models for Phylogenetic Trees Version 1.0.4 Date 2015-12-31 Author Utkarsh J. Dang and G. Brian Golding Maintainer Utkarsh J. Dang

More information

Package semisup. March 10, Version Title Semi-Supervised Mixture Model

Package semisup. March 10, Version Title Semi-Supervised Mixture Model Version 1.7.1 Title Semi-Supervised Mixture Model Package semisup March 10, 2019 Description Useful for detecting SNPs with interactive effects on a quantitative trait. This R packages moves away from

More information

Package fastqcr. April 11, 2017

Package fastqcr. April 11, 2017 Type Package Title Quality Control of Sequencing Data Version 0.1.0 Date 2017-04-12 Package fastqcr April 11, 2017 'FASTQC' is the most widely used tool for evaluating the quality of high throughput sequencing

More information

Package effectr. January 17, 2018

Package effectr. January 17, 2018 Title Predicts Oomycete Effectors Version 1.0.0 Package effectr January 17, 2018 Predicts cytoplasmic effector proteins using genomic data by searching for motifs of interest using regular expression searches

More information

Package keyholder. May 19, 2018

Package keyholder. May 19, 2018 Title Store Data About Rows Version 0.1.2 Package keyholder May 19, 2018 Tools for keeping track of information, named ``keys'', about rows of data frame like objects. This is done by creating special

More information

Package githubinstall

Package githubinstall Type Package Version 0.2.2 Package githubinstall February 18, 2018 Title A Helpful Way to Install R Packages Hosted on GitHub Provides an helpful way to install packages hosted on GitHub. URL https://github.com/hoxo-m/githubinstall

More information

Package mfa. R topics documented: July 11, 2018

Package mfa. R topics documented: July 11, 2018 Package mfa July 11, 2018 Title Bayesian hierarchical mixture of factor analyzers for modelling genomic bifurcations Version 1.2.0 MFA models genomic bifurcations using a Bayesian hierarchical mixture

More information

Package goodpractice

Package goodpractice Title Advice on R Package Building Version 1.0.2 Package goodpractice May 2, 2018 Give advice about good practices when building R packages. Advice includes functions and syntax to avoid, package structure,

More information

Package vinereg. August 10, 2018

Package vinereg. August 10, 2018 Type Package Title D-Vine Quantile Regression Version 0.5.0 Package vinereg August 10, 2018 Maintainer Thomas Nagler Description Implements D-vine quantile regression models with parametric

More information

Package crossword.r. January 19, 2018

Package crossword.r. January 19, 2018 Date 2018-01-13 Type Package Title Generating s from Word Lists Version 0.3.5 Author Peter Meissner Package crossword.r January 19, 2018 Maintainer Peter Meissner Generate crosswords

More information

Package opencage. January 16, 2018

Package opencage. January 16, 2018 Package opencage January 16, 2018 Type Package Title Interface to the OpenCage API Version 0.1.4 Tool for accessing the OpenCage API, which provides forward geocoding (from placename to longitude and latitude)

More information

Package tfruns. February 18, 2018

Package tfruns. February 18, 2018 Type Package Title Training Run Tools for 'TensorFlow' Version 1.3 Package tfruns February 18, 2018 Create and manage unique directories for each 'TensorFlow' training run. Provides a unique, time stamped

More information

Package brranching. R topics documented:

Package brranching. R topics documented: Package brranching June 19, 2018 Title Fetch 'Phylogenies' from Many Sources Includes methods for fetching 'phylogenies' from a variety of sources, currently includes 'Phylomatic' (),

More information

Package treedater. R topics documented: May 4, Type Package

Package treedater. R topics documented: May 4, Type Package Type Package Package treedater May 4, 2018 Title Fast Molecular Clock Dating of Phylogenetic Trees with Rate Variation Version 0.2.0 Date 2018-04-23 Author Erik Volz [aut, cre] Maintainer Erik Volz

More information

Package nltt. October 12, 2016

Package nltt. October 12, 2016 Type Package Title Calculate the NLTT Statistic Version 1.3.1 Package nltt October 12, 2016 Provides functions to calculate the normalised Lineage-Through- Time (nltt) statistic, given two phylogenetic

More information

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3.

Package geojsonsf. R topics documented: January 11, Type Package Title GeoJSON to Simple Feature Converter Version 1.3. Type Package Title GeoJSON to Simple Feature Converter Version 1.3.0 Date 2019-01-11 Package geojsonsf January 11, 2019 Converts Between GeoJSON and simple feature objects. License GPL-3 Encoding UTF-8

More information

Package BiocManager. November 13, 2018

Package BiocManager. November 13, 2018 Package BiocManager November 13, 2018 Title Access the Bioconductor Project Package Repository A convenient tool to install and update Bioconductor packages. Version 1.30.4 Depends R (>= 3.5.0) Imports

More information

Package barcoder. October 26, 2018

Package barcoder. October 26, 2018 Package barcoder October 26, 2018 Title Labelling, Tracking, and Collecting Data from Biological Samples Version 0.1.0 Maintainer Robert Colautti Tools to generate unique identifiers

More information

Package knitrprogressbar

Package knitrprogressbar Type Package Title Provides Progress Bars in 'knitr' Version 1.1.0 Package knitrprogressbar February 20, 2018 Provides a progress bar similar to 'dplyr' that can write progress out to a variety of locations,

More information

Package coalescentmcmc

Package coalescentmcmc Package coalescentmcmc March 3, 2015 Version 0.4-1 Date 2015-03-03 Title MCMC Algorithms for the Coalescent Depends ape, coda, lattice Imports Matrix, phangorn, stats ZipData no Description Flexible framework

More information

Package fitbitscraper

Package fitbitscraper Title Scrapes Data from Fitbit Version 0.1.8 Package fitbitscraper April 14, 2017 Author Cory Nissen [aut, cre] Maintainer Cory Nissen Scrapes data from Fitbit

More information

Package scmap. March 29, 2019

Package scmap. March 29, 2019 Type Package Package scmap March 29, 2019 Title A tool for unsupervised projection of single cell RNA-seq data Version 1.4.1 Author Vladimir Kiselev Maintainer Vladimir Kiselev

More information

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0.

Package censusr. R topics documented: June 14, Type Package Title Collect Data from the Census API Version 0.0. Type Package Title Collect Data from the Census API Version 0.0.3 Date 2017-06-13 Package censusr June 14, 2017 Use the US Census API to collect summary data tables for SF1 and ACS datasets at arbitrary

More information

Package clipr. June 23, 2018

Package clipr. June 23, 2018 Type Package Title Read and Write from the System Clipboard Version 0.4.1 Package clipr June 23, 2018 Simple utility functions to read from and write to the Windows, OS X, and X11 clipboards. Imports utils

More information

Package wikitaxa. December 21, 2017

Package wikitaxa. December 21, 2017 Title Taxonomic Information from 'Wikipedia' Package wikitaxa December 21, 2017 'Taxonomic' information from 'Wikipedia', 'Wikicommons', 'Wikispecies', and 'Wikidata'. Functions included for getting taxonomic

More information

Package ezsummary. August 29, 2016

Package ezsummary. August 29, 2016 Type Package Title Generate Data Summary in a Tidy Format Version 0.2.1 Package ezsummary August 29, 2016 Functions that simplify the process of generating print-ready data summary using 'dplyr' syntax.

More information

Package reval. May 26, 2015

Package reval. May 26, 2015 Package reval May 26, 2015 Title Repeated Function Evaluation for Sensitivity Analysis Version 2.0.0 Date 2015-05-25 Author Michael C Koohafkan [aut, cre] Maintainer Michael C Koohafkan

More information

Package bisect. April 16, 2018

Package bisect. April 16, 2018 Package bisect April 16, 2018 Title Estimating Cell Type Composition from Methylation Sequencing Data Version 0.9.0 Maintainer Eyal Fisher Author Eyal Fisher [aut, cre] An implementation

More information

Package cli. November 5, 2017

Package cli. November 5, 2017 Package cli November 5, 2017 Title Helpers for Developing Command Line Interfaces Version 1.0.0 A suite of tools designed to build attractive command line interfaces ('CLIs'). Includes tools for drawing

More information

Package rdiversity. June 19, 2018

Package rdiversity. June 19, 2018 Type Package Package rdiversity June 19, 2018 Title Measurement and Partitioning of Similarity-Sensitive Biodiversity Version 1.2.1 Date 2018-06-12 Maintainer Sonia Mitchell

More information

Package swmmr. April 10, 2018

Package swmmr. April 10, 2018 Type Package Title R Interface for US EPA's SWMM Package swmmr April 10, 2018 Functions to connect the widely used Storm Water Management Model (SWMM) of the United States Environmental Protection Agency

More information

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2

Package rprojroot. January 3, Title Finding Files in Project Subdirectories Version 1.3-2 Title Finding Files in Project Subdirectories Version 1.3-2 Package rprojroot January 3, 2018 Robust, reliable and flexible paths to files below a project root. The 'root' of a project is defined as a

More information

Package kdetrees. February 20, 2015

Package kdetrees. February 20, 2015 Type Package Package kdetrees February 20, 2015 Title Nonparametric method for identifying discordant phylogenetic trees Version 0.1.5 Date 2014-05-21 Author and Ruriko Yoshida Maintainer

More information

Package rdryad. June 18, 2018

Package rdryad. June 18, 2018 Type Package Title Access for Dryad Web Services Package rdryad June 18, 2018 Interface to the Dryad ``Solr'' API, their ``OAI-PMH'' service, and fetch datasets. Dryad () is a curated

More information

Package muscle. R topics documented: March 7, Type Package

Package muscle. R topics documented: March 7, Type Package Type Package Package muscle March 7, 2019 Title Multiple Sequence Alignment with MUSCLE Version 3.24.0 Date 2012-10-05 Author Algorithm by Robert C. Edgar. R port by Alex T. Kalinka. Maintainer Alex T.

More information

Package Organism.dplyr

Package Organism.dplyr Package Organism.dplyr January 9, 2019 Title dplyr-based Access to Bioconductor Annotation Resources Version 1.11.0 Description This package provides an alternative interface to Bioconductor 'annotation'

More information

Package GetITRData. October 22, 2017

Package GetITRData. October 22, 2017 Package GetITRData October 22, 2017 Title Reading Financial Reports from Bovespa's ITR System Version 0.6 Date 2017-10-21 Reads quarterly and annual financial reports including assets, liabilities, income

More information

Package cancensus. February 4, 2018

Package cancensus. February 4, 2018 Type Package Package cancensus February 4, 2018 Title Canadian Census Data and Geography from the 'CensusMapper' API Version 0.1.7 Integrated, convenient, and uniform access to Canadian Census data and

More information

Package datapasta. January 24, 2018

Package datapasta. January 24, 2018 Title R Tools for Data Copy-Pasta Version 3.0.0 Package datapasta January 24, 2018 RStudio addins and R functions that make copy-pasting vectors and tables to text painless. Depends R (>= 3.3.0) Suggests

More information

Package embed. November 19, 2018

Package embed. November 19, 2018 Version 0.0.2 Package embed November 19, 2018 Title Extra Recipes for Encoding Categorical Predictors Description Factor predictors can be converted to one or more numeric representations using simple

More information

Package influxdbr. January 10, 2018

Package influxdbr. January 10, 2018 Type Package Title R Interface to InfluxDB Version 0.14.2 Date 2018-01-10 Package influxdbr January 10, 2018 An R interface to the InfluxDB time series database . This package

More information

Package styler. December 11, Title Non-Invasive Pretty Printing of R Code Version 1.0.0

Package styler. December 11, Title Non-Invasive Pretty Printing of R Code Version 1.0.0 Title Non-Invasive Pretty Printing of R Code Version 1.0.0 Package styler December 11, 2017 Pretty-prints R code without changing the user's formatting intent. Imports backports, cli, enc, magrittr, purrr,

More information

Package censusapi. August 19, 2018

Package censusapi. August 19, 2018 Version 0.4.1 Title Retrieve Data from the Census APIs Package censusapi August 19, 2018 A wrapper for the U.S. Census Bureau APIs that returns data frames of Census data and metadata. Available datasets

More information

Package primertree. January 12, 2016

Package primertree. January 12, 2016 Version 1.0.3 Package primertree January 12, 2016 Maintainer Jim Hester Author Jim Hester Title Visually Assessing the Specificity and Informativeness of Primer Pairs Identifies

More information

Package calpassapi. August 25, 2018

Package calpassapi. August 25, 2018 Title R Interface to Access CalPASS API Version 0.0.1 Package calpassapi August 25, 2018 Description Implements methods for querying data from CalPASS using its API. CalPASS Plus. MMAP API V1. .

More information

Package ECctmc. May 1, 2018

Package ECctmc. May 1, 2018 Type Package Package ECctmc May 1, 2018 Title Simulation from Endpoint-Conditioned Continuous Time Markov Chains Version 0.2.5 Date 2018-04-30 URL https://github.com/fintzij/ecctmc BugReports https://github.com/fintzij/ecctmc/issues

More information

Package vip. June 15, 2018

Package vip. June 15, 2018 Type Package Title Variable Importance Plots Version 0.1.0 Package vip June 15, 2018 A general framework for constructing variable importance plots from various types machine learning models in R. Aside

More information

Package internetarchive

Package internetarchive Type Package Title An API Client for the Internet Archive Package internetarchive December 8, 2016 Search the Internet Archive, retrieve metadata, and download files. Version 0.1.6 Date 2016-12-08 License

More information

Package slinky. March 15, 2019

Package slinky. March 15, 2019 Type Package Package slinky March 15, 2019 Title Putting the fun in LINCS L1000 data analysis Version 1.0.2 Date 2018-09 -21 Author Eric J. Kort Maintainer Eric J. Kort Wrappers to

More information

Package climber. R topics documented:

Package climber. R topics documented: Package climber November 19, 2016 Title Calculate Average Minimal Depth of a Maximal Subtree for 'ranger' Package Forests Version 0.0.1 Calculates first, and second order, average minimal depth of a maximal

More information

Package widyr. August 14, 2017

Package widyr. August 14, 2017 Type Package Title Widen, Process, then Re-Tidy Data Version 0.1.0 Package widyr August 14, 2017 Encapsulates the pattern of untidying data into a wide matrix, performing some processing, then turning

More information

Package ompr. November 18, 2017

Package ompr. November 18, 2017 Type Package Package ompr November 18, 2017 Title Model and Solve Mixed Integer Linear Programs Version 0.7.0 Model mixed integer linear programs in an algebraic way directly in R. The is solver-independent

More information

Package available. November 17, 2017

Package available. November 17, 2017 Package available November 17, 2017 Title Check if the Title of a Package is Available, Appropriate and Interesting Version 1.0.0 Check if a given package is available to use. It checks the 's validity.

More information

Package rmapzen. October 7, 2018

Package rmapzen. October 7, 2018 Package rmapzen October 7, 2018 Type Package Title Client for 'Mapzen' and Related Map APIs Version 0.4.1 Maintainer Tarak Shah Provides an interface to 'Mapzen'-based APIs (including

More information

Package SingleCellExperiment

Package SingleCellExperiment Version 1.5.0 Date 2018-10-26 Package SingleCellExperiment Title S4 Classes for Single Cell Data Depends R (>= 3.5), SummarizedExperiment December 13, 2018 Imports S4Vectors, methods, BiocGenerics, utils,

More information

Package MIRA. October 16, 2018

Package MIRA. October 16, 2018 Version 1.2.0 Date 2018-04-17 Package MIRA October 16, 2018 Title Methylation-Based Inference of Regulatory Activity MIRA measures the degree of ``dip'' in methylation level surrounding a regulatory site

More information

Package nlgeocoder. October 8, 2018

Package nlgeocoder. October 8, 2018 Title Geocoding for the Netherlands Version 0.1.3 Package nlgeocoder October 8, 2018 R interface to the open location server API of 'Publieke Diensten Op de Kaart' (). It offers geocoding,

More information

Package methyvim. April 5, 2019

Package methyvim. April 5, 2019 Package methyvim April 5, 2019 Title Targeted, Robust, and Model-free Differential Methylation Analysis Version 1.4.0 Maintainer Nima Hejazi Author Nima Hejazi [aut, cre, cph], Mark

More information

Package dbx. July 5, 2018

Package dbx. July 5, 2018 Type Package Title A Fast, Easy-to-Use Database Interface Version 0.1.0 Date 2018-07-05 Package dbx July 5, 2018 Provides select, insert, update, upsert, and delete database operations. Supports 'PostgreSQL',

More information