-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
166 additions
and
118 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,15 +1,18 @@ | ||
Package: IMAGE | ||
Type: Package | ||
Title: What the Package Does Using Title Case | ||
Title: Title: High-Powered Detection of Genetic Effects on DNA | ||
Methylation Using Integrated Methylation QTL Mapping and | ||
Allele-Specific Analysis | ||
Version: 1.0 | ||
Date: 2019-03-01 | ||
Author: Your Name | ||
Maintainer: Your Name <[email protected]> | ||
Description: More details about what the package does. See | ||
<http://cran.r-project.org/doc/manuals/r-release/R-exts.html#The-DESCRIPTION-file> | ||
for details on how to write this part. | ||
Date: 2019-07-08 | ||
Author: Yue Fan, Shiquan Sun, Xiang Zhou | ||
Maintainer: Yue Fan <[email protected]> | ||
Description: MQTL mapping in bisulfite sequencing studies by fitting a binomial mixed model, incorporating allelic-specific methylation pattern. | ||
Encoding: UTF-8 | ||
License: GPL (>= 2) | ||
Depends: R (>= 3.6.0) | ||
Imports: Rcpp (>= 0.12.19),foreach,doParallel,parallel,Matrix | ||
LinkingTo: Rcpp, RcppArmadillo | ||
RoxygenNote: 6.1.1 | ||
NeedsCompilation: yes | ||
Packaged: 2019-06-21 18:09:38 UTC; yuef | ||
Packaged: 2019-07-08 20:14:35 UTC; yuef |
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,10 +1,19 @@ | ||
useDynLib(IMAGE, .registration=TRUE) | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(image) | ||
importFrom(Rcpp, evalCpp) | ||
importFrom("stats", "binomial", "glm", "model.frame", "model.matrix", | ||
"na.omit", "na.pass", "pchisq", "poisson", "var") | ||
import(parallel) | ||
import(foreach) | ||
import(doParallel) | ||
import(Matrix) | ||
|
||
import(doParallel) | ||
import(foreach) | ||
import(parallel) | ||
importFrom("stats","binomial") | ||
importFrom("stats","glm") | ||
importFrom("stats","lm") | ||
importFrom("stats","model.frame") | ||
importFrom("stats","model.matrix") | ||
importFrom("stats","na.omit") | ||
importFrom("stats","na.pass") | ||
importFrom("stats","pchisq") | ||
importFrom("stats","poisson") | ||
importFrom("stats","var") | ||
importFrom(Rcpp,evalCpp) | ||
useDynLib(IMAGE, .registration=TRUE) |
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,10 @@ | ||
#' @useDynLib IMAGE, .registration=TRUE | ||
#' @importFrom Rcpp evalCpp | ||
#' @importFrom "stats" "binomial" "glm" "model.frame" "model.matrix" "na.omit" "na.pass" "pchisq" "poisson" "var" "lm" | ||
#' @import parallel | ||
#' @import foreach | ||
#' @import doParallel | ||
#' @import Matrix | ||
#' @export image | ||
NULL | ||
|
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,15 @@ | ||
#' Example dataset | ||
#' | ||
#' A simulated example dataset of IMAGE. | ||
#' The variables are as follows: | ||
#' | ||
#' @format Contains the following objects: | ||
#' \describe{ | ||
#' \item{geno}{a data list containing 2 haplotypes.} | ||
#' \item{data}{a data list containing the methylated read counts and total read counts for each allele.} | ||
#' \item{K}{a genetic relationship matrix.} | ||
#' } | ||
#' @examples | ||
#' data(exampledata) | ||
#' res=image(exampledata$geno,exampledata$data,exampledata$K) | ||
"exampledata" |
Binary file not shown.
Binary file not shown.
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.