74 lines
2.7 KiB
R
Executable File
74 lines
2.7 KiB
R
Executable File
#!/bin/env Rscript
|
|
|
|
args <- commandArgs(TRUE)
|
|
verbose = TRUE
|
|
|
|
tranchesFile = args[1]
|
|
targetTITV = as.numeric(args[2])
|
|
suppressLegend = ! is.na(args[3])
|
|
|
|
# -----------------------------------------------------------------------------------------------
|
|
# Useful general routines
|
|
# -----------------------------------------------------------------------------------------------
|
|
|
|
MIN_FP_RATE = 0.001 # 1 / 1000 is min error rate
|
|
|
|
titvFPEst <- function(titvExpected, titvObserved) {
|
|
max(min(1 - (titvObserved - 0.5) / (titvExpected - 0.5), 1), MIN_FP_RATE)
|
|
}
|
|
|
|
titvFPEstV <- function(titvExpected, titvs) {
|
|
sapply(titvs, function(x) titvFPEst(titvExpected, x))
|
|
}
|
|
|
|
nTPFP <- function(nVariants, FDR) {
|
|
return(list(TP = nVariants * (1 - FDR/100), FP = nVariants * (FDR / 100)))
|
|
}
|
|
|
|
leftShift <- function(x, leftValue = 0) {
|
|
r = rep(leftValue, length(x))
|
|
for ( i in 1:(length(x)-1) ) {
|
|
#print(list(i=i))
|
|
r[i] = x[i+1]
|
|
}
|
|
r
|
|
}
|
|
|
|
# -----------------------------------------------------------------------------------------------
|
|
# Tranches plot
|
|
# -----------------------------------------------------------------------------------------------
|
|
data2 = read.table(tranchesFile,sep=",",head=T)
|
|
data2 = data2[order(data2$FDRtranche, decreasing=T),]
|
|
cols = c("cornflowerblue", "cornflowerblue", "darkorange", "darkorange")
|
|
density=c(20, -1, -1, 20)
|
|
outfile = paste(tranchesFile, ".pdf", sep="")
|
|
pdf(outfile, height=5, width=8)
|
|
par(mar = c(5, 5, 4, 2) + 0.1)
|
|
novelTiTv = c(data2$novelTITV,data2$novelTiTv)
|
|
alpha = 1 - titvFPEstV(targetTITV, novelTiTv)
|
|
#print(alpha)
|
|
|
|
numGood = round(alpha * data2$numNovel);
|
|
|
|
#numGood = round(data2$numNovel * (1-data2$FDRtranche/100))
|
|
numBad = data2$numNovel - numGood;
|
|
|
|
numPrevGood = leftShift(numGood, 0)
|
|
numNewGood = numGood - numPrevGood
|
|
numPrevBad = leftShift(numBad, 0)
|
|
numNewBad = numBad - numPrevBad
|
|
|
|
d=matrix(c(numPrevGood,numNewGood, numNewBad, numPrevBad),4,byrow=TRUE)
|
|
#print(d)
|
|
barplot(d/1000,horiz=TRUE,col=cols,space=0.2,xlab="Number of Novel Variants (1000s)", density=density, cex.axis=1.25, cex.lab=1.25) # , xlim=c(250000,350000))
|
|
#abline(v= d[2,dim(d)[2]], lty=2)
|
|
#abline(v= d[1,3], lty=2)
|
|
if ( ! suppressLegend )
|
|
legend("topright", c('Cumulative TPs','Tranch-specific TPs', 'Tranch-specific FPs', 'Cumulative FPs' ), fill=cols, density=density, bg='white', cex=1.25)
|
|
|
|
mtext("Ti/Tv",2,line=2.25,at=length(data2$FDRtranche)*1.2,las=1, cex=1)
|
|
mtext("FDR",2,line=0,at=length(data2$FDRtranche)*1.2,las=1, cex=1)
|
|
axis(2,line=-1,at=0.7+(0:(length(data2$FDRtranche)-1))*1.2,tick=FALSE,labels=data2$FDRtranche, las=1, cex.axis=1.0)
|
|
axis(2,line=1,at=0.7+(0:(length(data2$FDRtranche)-1))*1.2,tick=FALSE,labels=round(novelTiTv,3), las=1, cex.axis=1.0)
|
|
dev.off()
|