-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from DEploid-dev/68_new_version
68 new version
- Loading branch information
Showing
19 changed files
with
104 additions
and
46 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 @@ | |
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^\.Rhistory$ | ||
^tmp$ | ||
^tmp.* | ||
^NEWS\.md$ | ||
|
||
# bash scripts | ||
|
Empty file.
Empty file.
Empty file.
Empty file.
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,11 +1,11 @@ | ||
Package: DEploid | ||
Type: Package | ||
Title: Deconvolute Mixed Genomes with Unknown Proportions | ||
Version: 0.5.3 | ||
Version: 0.5.4 | ||
Authors@R: c( | ||
person("Joe", "Zhu", role=c("aut", "cre", "cph"), email="[email protected]"), | ||
person('Jacob', 'Almagro-Garcia', role=c('aut', 'cph')), | ||
person('Gil', 'McVean', role=c('aut', 'cph')), | ||
person('Jacob', 'Almagro-Garcia', role=c('aut')), | ||
person('Gil', 'McVean', role=c('aut')), | ||
person('University of Oxford', '', role=c('cph')), | ||
person('Yinghan', 'Liu', role=c('ctb')), | ||
person('CodeCogs', 'Zyba Ltd', role=c('com', "cph")), | ||
|
@@ -37,8 +37,8 @@ Imports: | |
Suggests: | ||
knitr, | ||
testthat (>= 0.9.0) | ||
SystemRequirements: C++11 | ||
VignetteBuilder: knitr | ||
LinkingTo: Rcpp | ||
RoxygenNote: 7.1.0 | ||
Date: 2020-04-21 | ||
RoxygenNote: 7.3.2 | ||
Encoding: UTF-8 | ||
Date: 2024-10-8 |
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,26 +1,37 @@ | ||
importFrom("scales", "alpha") | ||
importFrom("grDevices", "rainbow", "colorRampPalette") | ||
importFrom("graphics", "abline", "barplot", "hist", "plot", "points", "axis", "legend") | ||
importFrom("utils", "read.table") | ||
importFrom(Rcpp,evalCpp) | ||
importFrom("magrittr", "%>%") | ||
importFrom("plotly", "plot_ly", "layout", "add_trace") | ||
importFrom("rmarkdown", "pandoc_available") | ||
importFrom("htmlwidgets", "saveWidget") | ||
useDynLib(DEploid, .registration = TRUE) | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(computeObsWSAF) | ||
export(dEploid) | ||
export(extractVcf) | ||
export(plotProportions) | ||
export(extractCoverageFromVcf) | ||
export(extractCoverageFromTxt) | ||
export(extractCoverageFromVcf) | ||
export(extractPLAF) | ||
export(extractVcf) | ||
export(haplotypePainter) | ||
export(plotAltVsRef) | ||
export(computeObsWSAF) | ||
export(histWSAF) | ||
export(extractPLAF) | ||
export(plotWSAFvsPLAF) | ||
export(plotObsExpWSAF) | ||
export(plotAltVsRef) | ||
export(plotAltVsRefPlotly) | ||
export(plotHistWSAFPlotly) | ||
export(plotWSAFVsPLAFPlotly) | ||
export(plotObsExpWSAF) | ||
export(plotObsExpWSAFPlotly) | ||
export(plotProportions) | ||
export(plotWSAFVsPLAFPlotly) | ||
export(plotWSAFvsPLAF) | ||
importFrom(Rcpp,evalCpp) | ||
importFrom(grDevices,colorRampPalette) | ||
importFrom(grDevices,rainbow) | ||
importFrom(graphics,abline) | ||
importFrom(graphics,axis) | ||
importFrom(graphics,barplot) | ||
importFrom(graphics,hist) | ||
importFrom(graphics,legend) | ||
importFrom(graphics,plot) | ||
importFrom(graphics,points) | ||
importFrom(htmlwidgets,saveWidget) | ||
importFrom(magrittr,"%>%") | ||
importFrom(plotly,add_trace) | ||
importFrom(plotly,layout) | ||
importFrom(plotly,plot_ly) | ||
importFrom(rmarkdown,pandoc_available) | ||
importFrom(scales,alpha) | ||
importFrom(utils,read.table) | ||
useDynLib(DEploid, .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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
#' @keywords internal | ||
"_PACKAGE" | ||
|
||
#' Deconvolute Mixed Genomes with Unknown Proportions | ||
#' | ||
#' Traditional phasing programs are limited to diploid organisms. | ||
|
@@ -18,9 +21,16 @@ | |
#' Maintainer: Joe Zhu \email{[email protected]} | ||
#' | ||
#' @name DEploid-package | ||
#' @docType package | ||
#' | ||
#' @importFrom Rcpp evalCpp | ||
#' @useDynLib _DEploid_dEploid | ||
#' @useDynLib _DEploid_extractVcf | ||
#' @importFrom scales alpha | ||
#' @importFrom grDevices rainbow colorRampPalette | ||
#' @importFrom graphics abline barplot hist plot points axis legend | ||
#' @importFrom utils read.table | ||
#' @importFrom magrittr %>% | ||
#' @importFrom plotly plot_ly layout add_trace | ||
#' @importFrom rmarkdown pandoc_available | ||
#' @importFrom htmlwidgets saveWidget | ||
#' @useDynLib DEploid, .registration = TRUE | ||
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
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.
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
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