-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
… [rinstall] * MM-51: remove kronecker occurences, test, rewrite davies part mk1 * MM-51: davies only for variance components * MM-51: autoformatting * MM-51: up version * MM-51: auto formatting command
- Loading branch information
Showing
27 changed files
with
1,284 additions
and
1,298 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ Type: Package | |
Package: mvMAPIT | ||
Title: Implements the Multivariate MArginal ePIstasis Test (mvMAPIT) from | ||
Crawford et al. 2017 | ||
Version: 1.0.1 | ||
Version: 1.1.0 | ||
Author: lcrawlab | ||
Maintainer: Lorin Crawford <[email protected]> | ||
Description: Epistasis, commonly defined as the interaction between | ||
|
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,7 +1,13 @@ | ||
# Generated by using Rcpp::compileAttributes() -> do not edit by hand | ||
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 | ||
# Generated by using Rcpp::compileAttributes() -> do not edit by hand Generator | ||
# token: 10BE3573-1514-4C36-9D1C-5A225CD40393 | ||
|
||
MAPITCpp <- function(X, Y, Z = NULL, C = NULL, variantIndices = NULL, testMethod = "normal", cores = 1L, GeneticSimilarityMatrix = NULL, phenotypeCovariance = "identity") { | ||
.Call('_mvMAPIT_MAPITCpp', PACKAGE = 'mvMAPIT', X, Y, Z, C, variantIndices, testMethod, cores, GeneticSimilarityMatrix, phenotypeCovariance) | ||
MAPITCpp <- function( | ||
X, Y, Z = NULL, C = NULL, variantIndices = NULL, testMethod = "normal", cores = 1L, | ||
GeneticSimilarityMatrix = NULL | ||
) { | ||
.Call( | ||
"_mvMAPIT_MAPITCpp", PACKAGE = "mvMAPIT", X, Y, Z, C, variantIndices, testMethod, | ||
cores, GeneticSimilarityMatrix | ||
) | ||
} | ||
|
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,6 +1,6 @@ | ||
# This dummy function definition is included with the package to ensure that | ||
# 'tools::package_native_routine_registration_skeleton()' generates the required | ||
# registration info for the 'run_testthat_tests' symbol. | ||
# 'tools::package_native_routine_registration_skeleton()' generates the | ||
# required registration info for the 'run_testthat_tests' symbol. | ||
(function() { | ||
.Call("run_testthat_tests", PACKAGE = "mvMAPIT") | ||
.Call("run_testthat_tests", PACKAGE = "mvMAPIT") | ||
}) |
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.