-
Notifications
You must be signed in to change notification settings - Fork 0
Development #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Development #13
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
7924405
spec snp file
Cristianetaniguti 5f49211
Merge pull request #10 from josuechinchilla/main
Cristianetaniguti 651fe12
Merge pull request #11 from josuechinchilla/fix_forG
a695f97
add errors for wrong inputs
Cristianetaniguti ef34f0a
rm .inb requirement
Cristianetaniguti 0734d66
avoif .RData
0f476a4
Merge pull request #12 from josuechinchilla/fix_forG
629d4d9
Fixed bugs preventing CVA to work with genotypes.
78578d8
Fixed bugs preventing CVA to work with genotypes.
e4745c6
Merge branch 'development' of github.com:josuechinchilla/BIGf90 into …
51c23e7
updated functions to fit feedback from copilot
e51ba43
updated documentation
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
This file contains hidden or 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,15 @@ | ||
| ^.*\.Rproj$ | ||
| ^\.Rproj\.user$ | ||
| .github | ||
| BIGf90_0.3.0.pdf | ||
| ^\.github$ | ||
| ^\.git$ | ||
| ^\.gitignore$ | ||
| ^\.Rhistory$ | ||
| ^\.RData$ | ||
| ^\.DS_Store$ | ||
| ^.*\.DS_Store$ | ||
| ^BIGf90.*\.pdf$ | ||
| ^inst/software | ||
| ^inst/exec_mac | ||
| ^inst/exec_windows | ||
| ^inst/data | ||
| ^inst/test_data_salmon |
This file contains hidden or 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,9 +1,21 @@ | ||
| .DS_store | ||
| .Rproj.user | ||
| .Rbuildignore | ||
| BIGf90.Rproj | ||
| inst/exec_mac | ||
| inst/exec_windows/ | ||
| inst/data | ||
| tests/ | ||
| .Rhistory | ||
| # ---- OS / editor cruft ---- | ||
| .DS_Store | ||
| **/.DS_Store | ||
| .Rhistory | ||
| .RData | ||
| .Rproj.user | ||
|
|
||
| # ---- RStudio project file ---- | ||
| BIGf90.Rproj | ||
|
|
||
| # ---- Bundled BLUPf90 executables: keep locally, never push (platform-specific, ~165 MB) ---- | ||
| inst/software/ | ||
| inst/exec_mac/ | ||
| inst/exec_windows/ | ||
| inst/data/ | ||
|
|
||
| # ---- CVA/validation run outputs & local test data: keep locally, never push (~427 MB) ---- | ||
| inst/test_data_salmon/ | ||
|
|
||
| # NOTE: .Rbuildignore and tests/ are intentionally NOT ignored so they stay tracked | ||
| # (.Rbuildignore controls the built package; tests/ will hold testthat unit tests). |
This file contains hidden or 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,22 +1,25 @@ | ||
| Package: BIGf90 | ||
| Title: R face front for running K-fold crossvalidation, estimating ebvs and variance component estimation with Blupf90 modules | ||
| Version: 0.3.2 | ||
| Title: R Face Front for Running K-Fold Crossvalidation, Estimating EBVs and Variance Component Estimation with Blupf90 Modules | ||
| Version: 0.4.0 | ||
| Authors@R: c(person("Josue", "Chinchilla-Vargas", role = c("aut", "cre"), email = "jc3635@cornell.edu"), | ||
| person("Cristiane", "Taniguti", role = "aut"), | ||
| person("Alexander", "Sandercock", role = "aut"), | ||
| person("Breeding Insight Team", role = "ctb")) | ||
| Maintainer: Josue Chinchilla-Vargas <jc3635@cornell.edu> | ||
| Description: This package provides R functions to run several BLUPf90 modules. Along with an R function to run K-fold crossvalidation for univariate analyses through blupf90+. | ||
| The output table from the K-fold crossvalidation function calculates accuracy as cor(y,ebv^) and cor(y*,ebv^) along with bias of ebvs calculated as reg(y,ebv.) | ||
| You will need to create the .par file to feed into Renumf90 manually. Once this is done, there are functions to run Renumf90, Blupf90+, Predictf90, Gibbsf90+ and Postgibbsf90. | ||
| Description: Provides R functions to run several BLUPf90 modules. Along with an R function to run K-fold crossvalidation for univariate analyses through blupf90+. | ||
| The output table from the K-fold crossvalidation function reports predictive ability as cor(y*, ebv^) and bias as the regression of y* on ebv^, with accuracy as cor(y*, ebv^)/sqrt(h2), where y* is the phenotype corrected for all fixed effects. | ||
| You can create the .par file to feed into Renumf90 manually or with write_par(). Once this is done, there are functions to run Renumf90, Blupf90+, Predictf90, Gibbsf90+ and Postgibbsf90. | ||
| If you need to learn how to use the blupf90 suite of programs refer to nce.ads.uga.edu/wiki/doku.php?id=start. Please remember to cite Blupf90 appropriately along with this package when used for publications. | ||
| To run the functions in this package you will need to have a directory with all the blupf90 executables so that you can indicate the path for R to find the execs. | ||
| As of version 0.3.0, all functions have been tested in PC and Unix environments, we have noticed that PC environments tend to have issues about permissions, so it is advised to run RStudio as administrator when planning to use this package. | ||
| License: Apache License (== 2.0) | ||
| Encoding: UTF-8 | ||
| Roxygen: list(markdown = TRUE) | ||
| RoxygenNote: 7.3.2 | ||
| Imports: | ||
| base (>= 4.3.1), | ||
| Imports: | ||
| dplyr (>= 1.1.4), | ||
| stats, | ||
| utils (>= 4.3.1) | ||
| Suggests: | ||
| testthat (>= 3.0.0) | ||
| Config/testthat/edition: 3 | ||
| Config/roxygen2/version: 8.0.0 |
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -7,4 +7,5 @@ export(run_gibbs) | |
| export(run_postgibbs) | ||
| export(run_predict) | ||
| export(run_renum) | ||
| export(write_par) | ||
| import(dplyr) | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.