Merge pull request #869 from broadinstitute/gg_fix_vqsr_plots_GSA-860
Switched VQSR tranches plot ordering rule
This commit is contained in:
commit
7681e89454
|
|
@ -41,7 +41,7 @@ leftShift <- function(x, leftValue = 0) {
|
||||||
# Tranches plot
|
# Tranches plot
|
||||||
# -----------------------------------------------------------------------------------------------
|
# -----------------------------------------------------------------------------------------------
|
||||||
data2 = read.table(tranchesFile,sep=",",head=T)
|
data2 = read.table(tranchesFile,sep=",",head=T)
|
||||||
data2 = data2[order(data2$novelTiTv, decreasing=F),]
|
data2 = data2[order(data2$targetTruthSensitivity, decreasing=T),]
|
||||||
#data2 = data2[order(data2$FDRtranche, decreasing=T),]
|
#data2 = data2[order(data2$FDRtranche, decreasing=T),]
|
||||||
cols = c("cornflowerblue", "cornflowerblue", "darkorange", "darkorange")
|
cols = c("cornflowerblue", "cornflowerblue", "darkorange", "darkorange")
|
||||||
density=c(20, -1, -1, 20)
|
density=c(20, -1, -1, 20)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue