Skip to content

Commit

Permalink
**v.0.3.6**
Browse files Browse the repository at this point in the history
* fixed a bug in `vcf_imputation`, the function now calls `genomic_converter`
with all the bells and whistles of that function (updated vcf import and imputations modules)
  • Loading branch information
thierrygosselin committed Sep 9, 2016
1 parent c12e300 commit 6266a55
Show file tree
Hide file tree
Showing 9 changed files with 216 additions and 729 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: stackr
Type: Package
Title: GBS/RADseq Data Exploration, Manipulation and Visualization using R
Version: 0.3.5
Date: 2016-08-25
Version: 0.3.6
Date: 2016-09-09
Encoding: UTF-8
Authors@R: c(
person("Thierry", "Gosselin", email = "thierrygosselin@icloud.com", role = c("aut", "cre")),
Expand Down
16 changes: 16 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# stackr v.0.3.6
* fixed a bug in `vcf_imputation`, the function now calls `genomic_converter`
with all the bells and whistles of that function (updated vcf import and imputations modules)


# stackr v.0.3.5
* updated tidy_genepop to read other flavors of the famous file format
* extracted a code block to create a new function called `tidy_fstat`

# stackr v.0.3.4
* updated documentation
* bug fix in `summary_haplotypes` introduced by the new version of `dplyr::distinct` (v.0.5.0)
* calculations of Pi is done in parallel inside `summary_haplotypes`



# stackr v.0.3.3
* `tidy_genomic_data`: added a check to throw an error when pop.levels != the pop.id in strata

Expand Down
Binary file added R/.DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion R/vcf2genepop.R
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ vcf2genepop <- function(
iteration.rf = 10,
split.number = 100,
verbose = FALSE,
parallel.core = detectCores()-1
parallel.core = detectCores() - 1
) {

res <- genomic_converter(
Expand Down
Loading

0 comments on commit 6266a55

Please sign in to comment.