Skip to content

Commit

Permalink
* Fixes with ggplot in 450K array QC plotting
Browse files Browse the repository at this point in the history
 * added an option 'differential.report.sites' to decrease runtime by skipping
 the differential site methylation section in the report

git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/RnBeads@112505 bc3139a8-67e5-0310-9ffc-ced21a209358
  • Loading branch information
f.mueller committed Jan 13, 2016
1 parent 67a4a39 commit abe929d
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ Authors@R: c(
role = c("aut")),
person("Fabian", "Mueller", email = "[email protected]",
role = c("aut", "cre")))
Date: 2015-12-30
Version: 1.3.4
Date: 2016-01-13
Version: 1.3.5
Suggests:
Category,
GEOquery,
Expand Down
4 changes: 2 additions & 2 deletions R/main.R
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ rnb.run.differential <- function(rnb.set, dir.reports,
module.start.log("Differential Methylation")

report <- init.pipeline.report("differential_methylation", dir.reports, init.configuration)
optionlist <- rnb.options("analyze.sites","region.types", "differential.permutations", "differential.comparison.columns",
optionlist <- rnb.options("analyze.sites", "differential.report.sites", "region.types", "differential.permutations", "differential.comparison.columns",
"differential.comparison.columns.all.pairwise","columns.pairing","differential.site.test.method","covariate.adjustment.columns",
"differential.adjustment.sva","differential.adjustment.celltype","differential.enrichment")
report <- rnb.add.optionlist(report, optionlist)
Expand Down Expand Up @@ -1416,7 +1416,7 @@ rnb.run.differential <- function(rnb.set, dir.reports,
report <- rnb.add.section(report, "Differential Methylation Analysis", txt)
} else {
gz <- rnb.getOption("gz.large.files")
includeSites <- rnb.getOption("analyze.sites")
includeSites <- rnb.getOption("differential.report.sites")
report <- rnb.section.diffMeth.introduction(diffmeth,report)
if (includeSites){
report <- rnb.section.diffMeth.site(rnb.set,diffmeth,report,gzTable=gz)
Expand Down
4 changes: 4 additions & 0 deletions R/options.R
Original file line number Diff line number Diff line change
Expand Up @@ -720,6 +720,10 @@ rnb.is.option <- function(txt) {
#' \item{\bold{\code{differential.enrichment}}\code{ = FALSE}}{
#' Flag indicating whether \href{http://www.geneontology.org/}{Gene Ontology} (GO)-enrichment analysis is to be
#' conducted on the identified differentially methylated regions.}
#' \item{\bold{\code{differential.report.sites}}\code{ = TRUE}}{
#' Flag indicating whether a section corresponding to differential site methylation should be added to the report.
#' Has no effect on the actual analysis, just the report. To disable differential site methylation analysis entirely
#' use the \code{analyze.sites} option.}
#' \item{\bold{\code{export.to.bed}}\code{ = TRUE}}{
#' Flag indicating whether the data should be exported to bed files.}
#' \item{\bold{\code{export.to.trackhub}}\code{ = c("bigBed","bigWig")}}{
Expand Down
7 changes: 7 additions & 0 deletions inst/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
RnBeads 1.3.5
=============

* Fixes with ggplot in 450K array QC plotting
* added an option 'differential.report.sites' to decrease runtime by skipping
the differential site methylation section in the report

RnBeads 1.3.4
=============

Expand Down
1 change: 1 addition & 0 deletions inst/extdata/options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ covariate.adjustment.columns integer.vector no yes NULL
differential.adjustment.sva logical no no TRUE
differential.adjustment.celltype logical no no TRUE
differential.enrichment logical no no FALSE
differential.report.sites logical no no TRUE
export.to.bed logical no no TRUE
export.to.trackhub character.vector no yes (bigBed,bigWig) (bigBed,bigWig)
export.to.csv logical no no FALSE
Expand Down
4 changes: 4 additions & 0 deletions man/rnb.options.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vignettes/RnBeads.Rnw
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

\author{Fabian M\"uller, Yassen Assenov, Pavlo Lutsik \\
\small{Contact: \cs{[email protected]}} \\
\small{Package version: \cs{1.1.2}}}
\small{Package version: \cs{1.2.0}}}

\thispagestyle{empty}
\maketitle
Expand Down

0 comments on commit abe929d

Please sign in to comment.