47 lines
1.3 KiB
R
47 lines
1.3 KiB
R
#!/broad/tools/apps/R-2.6.0/bin/Rscript
|
|
|
|
args <- commandArgs(TRUE)
|
|
verbose = TRUE
|
|
|
|
input = args[1]
|
|
outputDir = args[2]
|
|
annotationName = args[3]
|
|
minBinCutoff = as.numeric(args[4])
|
|
|
|
|
|
c <- read.table(input, header=T)
|
|
|
|
#
|
|
# Plot TiTv ratio as a function of the annotation
|
|
#
|
|
|
|
gt = c[c$numVariants>minBinCutoff,]
|
|
|
|
outfile = paste(outputDir, "binnedTiTv.", annotationName, ".pdf", sep="")
|
|
pdf(outfile, height=7, width=7)
|
|
par(cex=1.1)
|
|
plot(gt$value,gt$titv,xlab=annotationName,ylab="Ti/Tv ratio",pch=20);
|
|
m = weighted.mean(gt$value,gt$numVariants/sum(gt$numVariants))
|
|
ma = gt[gt$value > m,]
|
|
mb = gt[gt$value < m,]
|
|
m75 = weighted.mean(ma$value,ma$numVariants/sum(ma$numVariants))
|
|
m25 = weighted.mean(mb$value,mb$numVariants/sum(mb$numVariants))
|
|
abline(v=m,lty=2)
|
|
abline(v=m75,lty=2)
|
|
abline(v=m25,lty=2)
|
|
dev.off()
|
|
|
|
outfile = paste(outputDir, "binnedTiTv_quartiles.", annotationName, ".pdf", sep="")
|
|
pdf(outfile, height=7, width=7)
|
|
par(cex=1.1)
|
|
plot(gt$value,gt$titv,xlab=annotationName,ylab="Ti/Tv ratio",pch=20,xlim=c(0,80))
|
|
abline(v=m,lty=2)
|
|
abline(v=m75,lty=2)
|
|
abline(v=m25,lty=2)
|
|
dev.off()
|
|
|
|
outfile = paste(outputDir, "binnedTiTv_hist.", annotationName, ".pdf", sep="")
|
|
pdf(outfile, height=7, width=7)
|
|
par(cex=1.1)
|
|
plot(gt$value,gt$numVariants,xlab=annotationName,ylab="num Variants in bin",type="h");
|
|
dev.off() |