-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'issue-25' into develop
* issue-25: (38 commits) Adjusted unit tests for #25 Fixed sink() usage Fixed docs Exporting importFile() Improved handling of supported formats for greedyMix() (#25) Fixed basic parsing of FASTA files (#25) Increment version number to 0.0.0.9022 Fixed syntax (#25) Improved printing (#25) Partial reversion of b034158 (#25) Fixed to indMix (#25) Incorporated handleData() on greedyMix() (#25) Improved handleData() to handle FASTA (#25) Added numeric output option to load_fasta() (#25) Fixed test text (#25) Added missing documentation for arguments (#25) Syntax fix (#25) Delayed resolution of FIXMEs (#25) Workaround for usage of MATLAB any() (#25) Fixed argument passing (#25) ...
- Loading branch information
Showing
95 changed files
with
45,168 additions
and
45,030 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 |
---|---|---|
|
@@ -4,7 +4,6 @@ PITFALLS.md | |
CHANGELOG.md | ||
CITATION.cff | ||
.travis.yml | ||
inst/ext/ExamplesDataFormatting | ||
inst/testdata | ||
.github | ||
aux | ||
|
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# rBAPS (development version) | ||
|
||
# rBAPS 0.0.0.9021 | ||
|
||
* Added a `NEWS.md` file to track changes to the package. | ||
* Exported `greedyMix()` and `load_fasta()` functions. |
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
comparePartitions <- function(data, c.rows, partitionCompare.partitions, ninds, rowsFromInd, noalle, adjprior) { | ||
stop("Comparing partitions not yet implemented") # TODO: implement | ||
# nsamplingunits = size(c.rows,1); | ||
# partitions = partitionCompare.partitions; | ||
# npartitions = size(partitions,2); | ||
# partitionLogml = zeros(1,npartitions); | ||
# for i = 1:npartitions | ||
# % number of unique partition lables | ||
# npops = length(unique(partitions(:,i))); | ||
|
||
# partitionInd = zeros(ninds*rowsFromInd,1); | ||
# partitionSample = partitions(:,i); | ||
# for j = 1:nsamplingunits | ||
# partitionInd([c.rows(j,1):c.rows(j,2)]) = partitionSample(j); | ||
# end | ||
# partitionLogml(i) = initialCounts(partitionInd, data(:,1:end-1), npops, c.rows, noalle, adjprior); | ||
|
||
# end | ||
# % return the logml result | ||
# partitionCompare.logmls = partitionLogml; | ||
# set(h1, 'userdata', partitionCompare); | ||
# return | ||
} |
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
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
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,4 +1,3 @@ | ||
#' @export | ||
#' @title Etsi Paras | ||
#' @description Search for the best? | ||
#' @param osuus Percentages? | ||
|
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
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.