Skip to content

Commit 43641c0

Browse files
Merge pull request #128 from grunwaldlab/dev
merge dev before CRAN submission
2 parents b3b0cd2 + 7a6e912 commit 43641c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+407
-221
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ inst/doc/vignettes_info.*
1212
big_data/**
1313
scratch/*.pdf
1414
scratch/*.svg
15+
inst/doc

.travis.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
language: r
2+
r:
3+
- release
4+
- devel
25

36
sudo: required
7+
cran: http://cran.at.r-project.org
8+
9+
cache: packages
410

511
os:
612
- linux
713

8-
r_github_packages:
9-
- jimhester/covr
10-
1114
after_success:
12-
- Rscript -e 'library(covr);codecov()'
15+
- Rscript -e 'library(covr);codecov()'
16+
17+
notifications:
18+
email:
19+
on_success: change
20+
on_failure: always

DESCRIPTION

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,20 @@
11
Package: metacoder
2-
Title: Tools for metabarcoding experiment planning
3-
Version: 0.1.1.9579
2+
Title: Tools for Parsing, Manipulating, and Graphing Hierarchical Data
3+
Version: 0.1.1.710
44
Authors@R: c( person("Zachary", "Foster", email =
55
"zacharyfoster1989@gmail.com", role = c("aut", "cre")),
66
person("Niklaus", "Grunwald", email =
77
"grunwaln@science.oregonstate.edu", role = c("aut")))
8-
Description: A set of tools for metabarcoding (i.e. amplicon
9-
metagenomics) experiment planning and analysis. Has functions
10-
for parseing out taxonomic information from diverse metadata
11-
(e.g. sequence headers), for taxonomically- balanced
12-
subsampling of items with associated taxonomy information (e.g.
13-
sequences), and for making publication-quality graphics showing
14-
distributions of taxon statistics over taxonomic/phylogenetic
15-
trees.
8+
Maintainer: Zachary Foster <zacharyfoster1989@gmail.com>
9+
Description: A set of tools for parsing, manipulating, and graphing data classified by a hierarchy (e.g. a taxonomy).
1610
Depends: R (>= 3.0.2)
17-
License: GPL-2
11+
License: GPL-2 | GPL-3
1812
LazyData: true
1913
Imports: stringr, ggplot2, igraph, scales, grid, taxize, seqinr,
2014
reshape2, zoo, traits, RColorBrewer, RCurl, ape, reshape,
2115
stats, grDevices, utils, lazyeval, dplyr, magrittr, readr
2216
Suggests: knitr, rmarkdown, testthat
2317
VignetteBuilder: knitr
2418
RoxygenNote: 5.0.1
25-
Date: 2016-07-01
26-
Encoding: latin1
19+
Date: 2016-08-01
20+
Encoding: UTF-8

NAMESPACE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
S3method(extract_taxonomy,DNAbin)
44
S3method(extract_taxonomy,default)
55
S3method(extract_taxonomy,list)
6-
S3method(plot,taxmap)
6+
S3method(heat_tree,taxmap)
77
S3method(primersearch,character)
88
S3method(primersearch,taxmap)
99
S3method(print,taxmap)
@@ -18,6 +18,7 @@ export(everything)
1818
export(extract_taxonomy)
1919
export(filter_obs)
2020
export(filter_taxa)
21+
export(heat_tree)
2122
export(hierarchies)
2223
export(layout_functions)
2324
export(matches)

R/dataset_documentation.R

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,6 @@
140140
#' }
141141
#'
142142
#' @format An object of type \code{\link{taxmap}}
143-
#' @source \url{http://5.196.17.195/pr2/index.html}
144143
"pr2_ex_data"
145144

146145

@@ -182,7 +181,6 @@
182181
#' }
183182
#'
184183
#' @format An object of type \code{\link{taxmap}}
185-
#' @source \url{http://itsonedb.ba.itb.cnr.it:8080/ITS1}
186184
"its1_ex_data"
187185

188186

0 commit comments

Comments
 (0)