Skip to content

Commit

Permalink
fixed R check
Browse files Browse the repository at this point in the history
  • Loading branch information
GuangchuangYu committed Jan 2, 2019
1 parent 53f845d commit aaca2d3
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: seqcombo
Title: Visualization Tool for Sequence Recombination and Reassortment
Version: 1.5.0
Version: 1.5.1
Authors@R: person("Guangchuang", "Yu", email = "[email protected]", role = c("aut", "cre"))
Description: Provides useful functions for visualizing sequence recombination
and virus reassortment events.
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ clean:
$(RM) -r $(PKGNAME).Rcheck/

release:
git checkout RELEASE_3_7;\
git checkout RELEASE_3_8;\
git fetch --all

update:
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ importFrom(Biostrings,width)
importFrom(cowplot,plot_grid)
importFrom(dplyr,group_by)
importFrom(dplyr,group_by_)
importFrom(dplyr,n)
importFrom(dplyr,select)
importFrom(dplyr,summarize)
importFrom(dplyr,summarize_)
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# seqcombo 1.5.1

+ fixed R check by import `dplyr::n` (2019-01-02, Wed)

# seqcombo 1.1.1

+ better simplot implementation (2018-01-09, Fri)
Expand Down
1 change: 1 addition & 0 deletions R/seqdiff.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ nucleotide_difference <- function(x, reference=1) {
##' @importFrom dplyr group_by
##' @importFrom dplyr summarize
##' @importFrom dplyr select
##' @importFrom dplyr n
nucleotide_difference_count <- function(x, width=50, keep0=FALSE) {
n <- max(x$position)
bin <- rep(1:ceiling(n/width), each=width)
Expand Down

0 comments on commit aaca2d3

Please sign in to comment.