Skip to content
Snippets Groups Projects
Commit 0747e2b4 authored by Gervaise Henry's avatar Gervaise Henry 🤠
Browse files

Merge branch 'develop' into 'master'

Develop

See merge request !18
parents f2f05b7e 9a0c9890
1 merge request!18Develop
Pipeline #3981 passed with stage
in 14 seconds
# v1.0.0 (in development)
**User Facing**
* Working version
**Background**
*Known Bugs*
\ No newline at end of file
# v1.0.2
**User Facing**
* Remove unnecessary legend on boxplot pdf output
**Background**
*Known Bugs*
# v1.0.1 (**MASKED**)
**User Facing**
* Remove blank page in output to pdf
* Remove unnecessary legend on boxplot
**Background**
*Known Bugs*
# v1.0.0
**User Facing**
* Working version
**Background**
*Known Bugs*
\ No newline at end of file
......@@ -105,7 +105,7 @@ shinyServer(
theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
panel.background = element_blank(), axis.line = element_line(colour = "black"), legend.position = "none")
#cat("printing",gene,"\n")
print(p + facet_wrap( ~ cancer, scales="free") + ggtitle(gene) + theme(plot.title = element_text(hjust = 0.5)))
print(p + facet_wrap( ~ cancer, scales="free") + ggtitle(gene) + theme(plot.title = element_text(hjust = 0.5), legend.position = "none"))
incProgress(1/n, detail = paste0("printing plot!"))
}
}
......
......@@ -105,7 +105,7 @@ shinyServer(
theme(panel.grid.major = element_blank(), panel.grid.minor = element_blank(),
panel.background = element_blank(), axis.line = element_line(colour = "black"), legend.position = "none")
#cat("printing",gene,"\n")
print(p + facet_wrap( ~ cancer, scales="free") + ggtitle(gene) + theme(plot.title = element_text(hjust = 0.5)))
print(p + facet_wrap( ~ cancer, scales="free") + ggtitle(gene) + theme(plot.title = element_text(hjust = 0.5), legend.position = "none"))
incProgress(1/n, detail = paste0("printing plot!"))
}
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment