# $CVSHeader: pal8e/dat/stat/plot-reliableOver,v 1.2 2005/02/15 01:10:24 indraneel Rel $

## Run using GNUPlot

set boxwidth 0.20 relative
#set style fill solid 0.50
set style fill pattern

set xrange [0:2.2]
set yrange[20:100]
set xtics 0.0, 0.2, 2.0

set xlabel "RMSD of PDB Cordinates"
set ylabel "% of DSSP assigned helices and strands assigned by test program"
set title "Assignment Similarity using Randomly Shifted PDB Coordinates with DSSP as Standard"

#set terminal postscript eps enhanced color blacktext solid "Times-Roman" 12
set terminal postscript eps enhanced "Times-Roman" 12
set output "reliabilityDSSP.eps"

plot 'reliable-out.dssp' using 3:1 with lines title "DSSP definition", \
	'reliable-out.psea_to_dssp.total' using 3:1 with lines title "P-SEA definition", \
	'reliable-out.pssd_to_dssp.total' using 3:1 with lines title "Our Program's definition"


