-
Notifications
You must be signed in to change notification settings - Fork 65
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 #69 from PF2-pasteur-fr/development
Development
- Loading branch information
Showing
25 changed files
with
409 additions
and
207 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,16 +1,37 @@ | ||
Package: SARTools | ||
Type: Package | ||
Title: Statistical Analysis of RNA-Seq Tools | ||
Version: 1.6.9 | ||
Date: 2019-07-10 | ||
Version: 1.7.0 | ||
Date: 2019-09-16 | ||
Author: Marie-Agnes Dillies and Hugo Varet | ||
Maintainer: Hugo Varet <[email protected]> | ||
Depends: R (>= 3.3.0), DESeq2 (>= 1.12.0), edgeR (>= 3.12.0), xtable | ||
Imports: stats, utils, graphics, grDevices, knitr, rmarkdown (>= 1.4), SummarizedExperiment, S4Vectors, limma, genefilter (>= 1.44.0) | ||
Depends: R (>= 3.3.0), | ||
DESeq2 (>= 1.12.0), | ||
edgeR (>= 3.12.0), | ||
ggplot2, | ||
kableExtra | ||
Imports: genefilter (>= 1.44.0), | ||
GGally, | ||
ggrepel, | ||
ggdendro, | ||
graphics, | ||
grDevices, | ||
grid, | ||
gridExtra, | ||
knitr, | ||
limma, | ||
RGraphics, | ||
rlang, | ||
rmarkdown (>= 1.4), | ||
S4Vectors, | ||
scales, | ||
stats, | ||
SummarizedExperiment, | ||
utils | ||
Suggests: optparse | ||
biocViews: Software | ||
VignetteBuilder: knitr, rmarkdown | ||
Encoding: latin1 | ||
Description: Provide R tools and an environment for the statistical analysis of RNA-Seq projects: load and clean data, produce figures, perform statistical analysis/testing with DESeq2 or edgeR, export results and create final report. | ||
License: GPL-2 | ||
RoxygenNote: 6.0.1 | ||
RoxygenNote: 6.1.1 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
#' @exportPattern ^[a-zA-Z] | ||
#' @import DESeq2 | ||
#' @import edgeR | ||
#' @import xtable | ||
#' @importFrom grDevices col2rgb dev.off png | ||
#' @import ggplot2 | ||
#' @import kableExtra | ||
#' @importFrom genefilter shorth | ||
#' @importFrom GGally ggpairs ggally_points wrap | ||
#' @importFrom ggdendro ggdendrogram | ||
#' @importFrom ggrepel geom_text_repel | ||
#' @importFrom graphics abline barplot boxplot curve hist legend lines pairs par plot points text | ||
#' @importFrom stats density dist dnorm formula hclust lm model.matrix p.adjust.methods prcomp quantile relevel sd var | ||
#' @importFrom utils combn head installed.packages packageVersion read.table tail write.table | ||
#' @importFrom grid textGrob gpar | ||
#' @importFrom gridExtra grid.arrange | ||
#' @importFrom grDevices col2rgb dev.off png | ||
#' @importFrom limma plotMDS | ||
#' @importFrom RGraphics splitTextGrob | ||
#' @importFrom rlang .data | ||
#' @importFrom rmarkdown render | ||
#' @importFrom SummarizedExperiment assay colData | ||
#' @importFrom S4Vectors mcols metadata | ||
#' @importFrom limma plotMDS | ||
#' @importFrom genefilter shorth | ||
#' @importFrom scales trans_breaks log10_trans trans_new trans_format log_breaks math_format | ||
#' @importFrom SummarizedExperiment assay colData | ||
#' @importFrom stats coefficients density dist dnorm formula hclust lm model.matrix p.adjust.methods prcomp quantile relevel sd var | ||
#' @importFrom utils stack combn head installed.packages packageVersion read.table tail write.table | ||
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
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.