README.md

cegwas-2

Travis-CI Build Status codecov

Initial Setup

This documentation can be removed later.

devtools::create("cegwas2")

Coverage

coverage

Testing

testthat::auto_test_package()

Linting

Code linting is performed using lintr.

Linting locally

lintr::lint_package()

In some cases, you may need to exclude a code chunk from linting. This should be rare, but you can do it with the following:

# Begin Exclude Linting"

code_I_want_to_not_lint <- function(x) {
    x + 1
}

# End Exclude Linting"
# Example usage
# Load example phenotype set
df <- data.table::fread(system.file("extdata",
                                    "test_phenotype.tsv",
                                    package = "cegwas2",
                                    mustWork = TRUE)) %>%
    dplyr::select(strain, trait1)

# Initialize ceGWAS R6 object
test_trait <- ceGWAS$new(phenotype = df)
# Set genotype and kinship matices
test_trait$set_markers(genotype_matrix = cegwas2::snps,
                       kinship_matrix = cegwas2::kinship)                  
# EMMAx mapping
test_trait$run_mapping(P3D = TRUE)
# EMMA mapping
test_trait$run_mapping(P3D = FALSE)


AndersenLab/cegwas2 documentation built on Aug. 26, 2020, 4:43 p.m.