# $CVSHeader: pal8e/dat/stat/plot-sscontent,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 xrange [0:2]
set yrange[0:60]
set xtics 0.0, 0.2, 2.0

set xlabel "RMSD of PDB Coordinates"
set ylabel "% of Total Residues Assigned"
set title "Percent Assignment as Helix and Strand using Randomly Shifted PDB Coordinates"

set terminal x11

plot \
'rpssd' using 3:6 with lines lt 1 lw 2 title "Our Program's Helix definiton", \
'rpssd' using 3:5 with lines lt 2 lw 2 title "Our Programs's Strand definition", \
'rdssp' using 3:6 with lines lt 3 lw 2 title "DSSP Helix definition", \
'rdssp' using 3:5 with lines lt 4 lw 2 title "DSSP Strand definition", \
'rpsea' using 3:6 with lines lt 5 lw 2 title "P-SEA Helix definition", \
'rpsea' using 3:5 with lines lt 6 lw 2 title "P-SEA Strand definition"

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


