Skip to content

Commit

Permalink
v2.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
royfrancis committed Apr 14, 2019
1 parent 89e1ece commit 2c416a9
Show file tree
Hide file tree
Showing 122 changed files with 65,698 additions and 63,205 deletions.
16 changes: 8 additions & 8 deletions BinaryFiles
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
inst/bin/clumpp_linux_1.1.2b_32bit
inst/bin/clumpp_linux_1.1.2b_64bit
inst/bin/clumpp_mac_1.1.2b
inst/bin/clumpp_windows_1.1.2b.exe
inst/bin/distruct_linux_1.1_64bit
inst/bin/distruct_macosx_1.1
inst/bin/distruct_macosx_1.1_2013
inst/bin/distruct_windows_1.1.exe
inst/bin/clumpp_linux_1.1.2b_32bit
inst/bin/clumpp_linux_1.1.2b_64bit
inst/bin/clumpp_mac_1.1.2b
inst/bin/clumpp_windows_1.1.2b.exe
inst/bin/distruct_linux_1.1_64bit
inst/bin/distruct_macosx_1.1
inst/bin/distruct_macosx_1.1_2013
inst/bin/distruct_windows_1.1.exe
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ Package: pophelper
Type: Package
Title: Tabulate, analyse and visualise admixture proportions from STRUCTURE, TESS, BAPS, ADMIXTURE and tab-delimited q-matrices
files
Version: 2.2.8.1
Date: 2019-03-16
Version: 2.2.9
Date: 2019-04-14
Author: Roy Mathew Francis
Authors@R: person("Roy", "Francis", email = "roy.m.francis@outlook.com",role = c("aut", "cre"))
Maintainer: Roy Mathew Francis <roy.m.francis@outlook.com>
Expand Down
6 changes: 5 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
pophelper 2.2.9
===========
* 14-Apr-2019
* plotQ(): Order of runs in a joined plot was incorrect when k>10 and grplab in use. Fixed.

pophelper 2.2.8.1
===========
* 16-Mar-2019
Expand All @@ -9,7 +14,6 @@ pophelper 2.2.8.1
pophelper 2.2.8
===========
* 15-Mar-2019
* R dependency set to >=3.5.0
* Dropped dependency on package cairo
* summariseQ() accepts single run tabulated input
* evannoMethodStructure(): Argument 'file' incorrectly specified for pdf as 'filename'. Fixed
Expand Down
8 changes: 4 additions & 4 deletions R/pophelper.R
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Begin ------------------------------------------------------------------------

# pophelper v2.2.8.1
# pophelper v2.2.9
# Functions

# check packages
Expand Down Expand Up @@ -3077,7 +3077,7 @@ plotQ <- function(qlist=NULL,imgoutput="sep",clustercol=NA,sortind=NA,grplab=NA,
k <- ncol(df1)
Ind <- nrow(df1)
df1$ind <- as.character(rownames(df1))
df1$run <- factor(rep(i,nrow(df1)))
df1$run <- as.integer(rep(i,nrow(df1)))
df1$order_ind <- seq(from=1,to=Ind)
df2 <- tidyr::gather(df1,"variable","value",-c(ind,run,order_ind))

Expand Down Expand Up @@ -3424,7 +3424,7 @@ plotQ <- function(qlist=NULL,imgoutput="sep",clustercol=NA,sortind=NA,grplab=NA,
Ind <- nrow(df1)
#df1$ind <- factor(rownames(df1),levels=rownames(df1))
df1$ind <- as.character(rownames(df1))
df1$run <- factor(rep(i,nrow(df1)))
df1$run <- as.integer(rep(i,nrow(df1)))
df1$order_ind <- seq(from=1,to=Ind)

# cumulative numbering
Expand Down Expand Up @@ -5070,7 +5070,7 @@ summarizeQ <- summariseQ

#ON LOAD
.onLoad <- function(...) {
packageStartupMessage("pophelper v2.2.8.1 ready.")
packageStartupMessage("pophelper v2.2.9 ready.")
}

# End --------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pophelper 2.2.8.1
# pophelper 2.2.9

`pophelper` is an R package and web app to analyse and visualise population structure. `pophelper` curently supports output run files generated from population analysis programs such as STRUCTURE, TESS, TESS3, BAPS and numeric delimited formats such as ADMIXTURE or fastSTRUCTURE. The `pophelper` package can be used to read run files to R, tabulate runs, summarise runs, estimate *K* using the Evanno method, align clusters within K using CLUMPP, export files for DISTRUCT and generate barplot figures.

Expand Down
2 changes: 1 addition & 1 deletion inst/CITATION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bibentry(bibtype = "Article",
pages = "27-32",
doi = "10.1111/1755-0998.12509",
url = "https://github.com/royfrancis/pophelper",
note = "pophelper R package version 2.2.8.1",
note = "pophelper R package version 2.2.9",
textVersion=
paste("Francis, R. M. (2017).",
"pophelper: an R package and web app to analyse and visualize population structure.",
Expand Down
Loading

0 comments on commit 2c416a9

Please sign in to comment.