Skip to content

Commit cf8d8d8

Browse files
Replace use of depreciated n_extra in print
1 parent 6fe54ca commit cf8d8d8

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: metacoder
22
Title: Tools for Parsing, Manipulating, and Graphing Taxonomic Abundance Data
3-
Version: 0.3.5.003
3+
Version: 0.3.6
44
Authors@R: c(person("Zachary", "Foster", email =
55
"zacharyfoster1989@gmail.com", role = c("aut", "cre")),
66
person("Niklaus", "Grunwald", email =

NEWS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# News
22

3-
## Current
3+
## metacoder 0.3.6
44

55
* When an ordered factor is supplied to the `groups` argument of `compare_groups`, the order of levels is used to arrange the results. This can be used to change the order of groups when the output is used with `heat_tree_matrix` (issue [#323](https://github.com/grunwaldlab/metacoder/issues/323)).
66
* Added `calc_diff_abund_deseq2` function to use DESeq2 to produce output like `compare_group` useful for `heat_tree_matrix`
77
* Fixed error with `primersearch` and `primersearch_raw` when there is a single match to a single query (issue [#326](https://github.com/grunwaldlab/metacoder/issues/326))
88
* Fixed `Error in grid.Call.graphics(C_setviewport, vp, TRUE) : non-finite location and/or size for viewport` when using `heat_tree_matrix` with only a single comparison. Now a single differential heat tree is made instead of a matrix [#328](https://github.com/grunwaldlab/metacoder/issues/328)).
9+
* Replace use of depreciated `n_extra` in `print`.
910

1011
## metacoder 0.3.5
1112

R/old_taxa--taxmap--printers.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ print__tbl_df <- function(obj, data, name, prefix, max_width, max_rows) {
102102
# Capture tibble print output
103103
output <- paste0(prefix, utils::capture.output(print(data, n = max_rows,
104104
width = max_width - nchar(prefix),
105-
n_extra = 10)))
105+
max_extra_cols = 10)))
106106
# Remove any existing fonts
107107
output <- crayon::strip_style(output)
108108

0 commit comments

Comments
 (0)