Skip to content

Commit

Permalink
minor documentation changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
zkamvar committed Feb 3, 2015
1 parent 8407cec commit f9e28d7
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 15 deletions.
13 changes: 7 additions & 6 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
poppr 1.1.2.99
===========
NEW FEATURES
* new arguments to `plot_poppr_msn` to allow for easier manipulation of node sizes and of labeling
* read.genalex can now take read text connections as input. Addresses issue #8
* users can now specify cutoff for missing values in `aboot`

BUG FIX
* Fixed issue where monomorphic loci would cause an error in `recode_polyploids`
* Fixed logical error that would cause The infinite alleles model of Bruvo's distance to inflate the distance. (Found by Michael Metzger. Addresses issue #5).
* AMOVA can now take subset genclone objects (Addresses issue #7).
* in mlg.table, the mlgsub argument will not subset by name instead of index (fixed in #7).
* in mlg.table, the mlgsub argument will now subset by name instead of index (fixed in #7).
* Fixed issue for neighbor-joining trees where the internal function to fix negative branch lengths was accidentally shuffling the corrected branches. Addresses issue #11.
* diss.dist can now be used with aboot

NEW FEATURES
* Added new arguments to `plot_poppr_msn` to allow for easier manipulation of node sizes and of labeling.
* read.genalex can now take read text connections as input. Addresses issue #8
* users can now specify the missing cutoff in aboot

MISC
* info_table will print a discrete scale as opposed to colorbar when type = "ploidy"
* attempted to make model choices for Bruvo's distance more clear in the documentation

poppr 1.1.2
===========
Expand Down
3 changes: 2 additions & 1 deletion R/bruvo.r
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
#' @param pop a \code{\link{genind}} object
#'
#' @param replen a \code{vector} of \code{integers} indicating the length of the
#' nucleotide repeats for each microsatellite locus.
#' nucleotide repeats for each microsatellite locus. E.g. a locus with a (CAT)
#' repeat would have a repelen value of 3.
#'
#' @param add if \code{TRUE}, genotypes with zero values will be treated under
#' the genome addition model presented in Bruvo et al. 2004. See the
Expand Down
2 changes: 1 addition & 1 deletion R/poppr.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
#' \item \code{\link{informloci}} - Detects and removes phylogenetically uninformative loci
#' \item \code{\link{popsub}} - Subsets genind objects by population
#' \item \code{\link{shufflepop}} - Shuffles genotypes at each locus using four different shuffling algorithms
#' \item \code{\link{recode_polyploids}} - recode polyploid data sets with missing alleles imported as "0"
#' \item \code{\link{recode_polyploids}} - Recode polyploid data sets with missing alleles imported as "0"
#' }
#' @section Genetic distances:
#' \itemize{
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ If you want the absolute latest version of *poppr*, see about installing from gi

### Stable and Development versions

[![Build Status](https://travis-ci.org/grunwaldlab/poppr.png?branch=devel)](https://travis-ci.org/grunwaldlab/poppr?branch=devel)
[![Build Status](https://travis-ci.org/grunwaldlab/poppr.png?branch=devel)](https://travis-ci.org/grunwaldlab/poppr?branch=master)

If the image above says "Passing", then that means it should be safe to install with the latest version of R. If it does not say "Passing", I am probably trying to fix whatever problem is causing it as fast as I can.

Expand All @@ -64,16 +64,14 @@ Now you can use the `install_github()` function:
#### For the latest stable release:

```s
library("devtools")
install_github(repo = "grunwaldlab/poppr")
devtools::install_github(repo = "grunwaldlab/poppr")
library("poppr")
```

#### For the bleeding edge (development) version:

```s
library("devtools")
install_github(repo = "grunwaldlab/poppr", ref = "devel")
devtools::install_github(repo = "grunwaldlab/poppr@devel")
library("poppr")
```

Expand Down
3 changes: 2 additions & 1 deletion man/bruvo.dist.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ bruvo.dist(pop, replen = 1, add = TRUE, loss = TRUE)
\item{pop}{a \code{\link{genind}} object}
\item{replen}{a \code{vector} of \code{integers} indicating the length of the
nucleotide repeats for each microsatellite locus.}
nucleotide repeats for each microsatellite locus. E.g. a locus with a (CAT)
repeat would have a repelen value of 3.}
\item{add}{if \code{TRUE}, genotypes with zero values will be treated under
the genome addition model presented in Bruvo et al. 2004. See the
Expand Down
2 changes: 1 addition & 1 deletion man/poppr-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ This package relies on the \pkg{\link[adegenet]{adegenet}} package.
\item \code{\link{informloci}} - Detects and removes phylogenetically uninformative loci
\item \code{\link{popsub}} - Subsets genind objects by population
\item \code{\link{shufflepop}} - Shuffles genotypes at each locus using four different shuffling algorithms
\item \code{\link{recode_polyploids}} - recode polyploid data sets with missing alleles imported as "0"
\item \code{\link{recode_polyploids}} - Recode polyploid data sets with missing alleles imported as "0"
}
}

Expand Down

0 comments on commit f9e28d7

Please sign in to comment.