-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #581 from janaobsteter/devel
Merging the remaining changes to prepare the package for CRAN
- Loading branch information
Showing
119 changed files
with
1,569 additions
and
1,439 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: SIMplyBee | ||
Type: Package | ||
Title: 'AlphaSimR' Extension for Simulating Honeybee Populations and Breeding Programmes | ||
Version: 0.3.0 | ||
Version: 0.4.0 | ||
Authors@R: c( | ||
person("Jana", "Obšteter", email = "[email protected]", | ||
role = c("aut", "cre"), comment = c(ORCID = "0000-0003-1511-3916")), | ||
|
@@ -26,9 +26,10 @@ URL: https://github.com/HighlanderLab/SIMplyBee | |
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Imports: methods, R6, stats, utils, extraDistr (>= 1.9.1), RANN | ||
Depends: R (>= 3.3.0), AlphaSimR (>= 1.3.2) | ||
RoxygenNote: 7.3.1 | ||
Imports: methods, R6, stats, utils, extraDistr (>= 1.9.1), RANN, Rcpp (>= 0.12.7) | ||
Depends: R (>= 3.3.0), AlphaSimR (>= 1.5.3) | ||
LinkingTo: Rcpp, RcppArmadillo (>= 0.7.500.0.0), BH | ||
RoxygenNote: 7.3.2 | ||
Suggests: | ||
rmarkdown, | ||
knitr, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,54 +1,68 @@ | ||
# SIMplyBee version 0.4.0 # | ||
--- | ||
editor_options: | ||
markdown: | ||
wrap: 72 | ||
--- | ||
|
||
* 2023-MM-DD TODO | ||
# SIMplyBee version 0.4.0 | ||
|
||
## Major changes ## | ||
- 2024-08-23 | ||
|
||
* createColony() and createMultiColony() do not have the location argument | ||
anymore; use setLocation() instead; by default, location is now c(0, 0) PR#500 | ||
## Major changes | ||
|
||
## New features ## | ||
- createColony() and createMultiColony() do not have the location | ||
argument anymore; use setLocation() instead; by default, location is | ||
now c(0, 0) PR#500 | ||
|
||
* In setLocation(MultiColony) we can set one location (numeric) or multiple | ||
(list or data.frame) PR#500 | ||
|
||
* getLocation(MultiColony) got the collapse argument | ||
Commit#f4e629c3e8920948ad576eae3615a86b26300790 | ||
## New features | ||
|
||
* We can now sample location of a swarm - see sampleLocation and radius | ||
arugments in swarm() PR#500 PR#502 | ||
|
||
* New function rcircle() to sample a random point within a circle with a given | ||
radius PR#502 | ||
|
||
* Removed the function createRandomCrossPlan() - that option is now included in the newly added createCrossPlan() fuction | ||
- In setLocation(MultiColony) we can set one location (numeric) or | ||
multiple (list or data.frame) PR#500 | ||
|
||
* Added the funcionality for spatially-aware mating of honeybee colonies. The new funcionality is included in the createCrossPlan(), that allows to create the cross plan according to the colonies' locations, and in the cross() function, that crosses bees according to their location | ||
|
||
- getLocation(MultiColony) got the collapse argument | ||
Commit#f4e629c3e8920948ad576eae3615a86b26300790 | ||
|
||
## Bug fixes ## | ||
* Bug fix - get*Haplo() functions were returning diploid drones when input was a Pop-class | ||
- We can now sample location of a swarm - see sampleLocation and | ||
radius arguments in swarm() PR#500 PR#502 | ||
|
||
- New function rcircle() to sample a random point within a circle with | ||
a given radius PR#502 | ||
|
||
* | ||
- Removed the function createRandomCrossPlan() - that option is now | ||
included in the newly added createCrossPlan() fuction | ||
|
||
- Added the **functionality for spatially-aware mating** of honeybee | ||
colonies. The new functionality is included in the | ||
createCrossPlan(), that allows to create the cross plan according to | ||
the colonies' locations, and in the cross() function, that crosses | ||
bees according to their location. This did not break the old | ||
functionality of the cross function. | ||
|
||
- Unified setMisc and getMisc behaviour to comply with the new AlphaSimR behaviour | ||
|
||
# SIMplyBee version 0.3.0 # | ||
- Added new C++ function isHeterozygous() to speed up the SIMplyBee function isCsdHeterozygous() | ||
|
||
* 2022-12-05 First public/CRAN version of the package | ||
## Bug fixes | ||
|
||
## Major changes ## | ||
- Bug fix - get\*Haplo() functions were returning diploid drones when | ||
input was a Pop-class | ||
|
||
* ~2 years of work went into this first public version! | ||
- | ||
|
||
## New features ## | ||
# SIMplyBee version 0.3.0 | ||
|
||
* Many;) See the vignettes and help pages. | ||
- 2022-12-05 First public/CRAN version of the package | ||
|
||
## Bug fixes ## | ||
## Major changes | ||
|
||
* Many bugs and issues squashed - see https://github.com/HighlanderLab/SIMplyBee/issues. | ||
Please contribute to the development of this package. | ||
- \~2 years of work went into this first public version! | ||
|
||
## New features | ||
|
||
- Many;) See the vignettes and help pages. | ||
|
||
## Bug fixes | ||
|
||
- Many bugs and issues squashed - see | ||
<https://github.com/HighlanderLab/SIMplyBee/issues>. Please | ||
contribute to the development of this package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.