Skip to content

Commit

Permalink
Fix issue#2 - no circles in spider plot
Browse files Browse the repository at this point in the history
Incorrect object was passed to function logRlogORspider.

Bump version
  • Loading branch information
dario committed Feb 9, 2019
1 parent 6483f07 commit 437e516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/cnv_facets.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ suppressMessages(library(gridExtra))

# -----------------------------------------------------------------------------

VERSION= sprintf('0.12.1; facets=%s', packageVersion('facets'))
VERSION= sprintf('0.13.0; facets=%s', packageVersion('facets'))

docstring<- sprintf('DESCRIPTION \\n\\
Detect somatic copy number variants (CNVs) and estimate purity and ploidy in a\\n\\
Expand Down Expand Up @@ -841,7 +841,7 @@ if(sys.nframe() == 0){
write(sprintf('[%s] Plotting spider...', Sys.time()), stderr())
pdf(paste0(xargs$out, '.spider.pdf'), width= 16/2.54, height= 14/2.54)
par(las= 1, mar= c(3, 3, 1, 1), mgp= c(1.5, 0.5, 0), tcl= -0.3)
logRlogORspider(facets$proc_out, facets$proc_out$dipLogR)
logRlogORspider(facets$proc_out$out, facets$proc_out$dipLogR)
x_ <- dev.off()

si<- capture.output(sessionInfo())
Expand Down

0 comments on commit 437e516

Please sign in to comment.