#! /bin/env gnuplot set terminal postscript eps color set output "calcium.eps" set size square 6.0/10,4.0/7 set xlabel "Sens" ,.5 set ylabel "PPV" 1.0 set title "Performance on general calcium" set key outside samplen 1 plot \ "< awk '$6!=0 && $10!=0 {print $6,$10}' efhand-calcium-eval.r6.txt" \ using ($1):($2) title "SeqFEATURE" with linespoints, \ "< awk '$6!=0 && $10!=0 {print $6,$10}' liping-calcium-eval.r6.txt" \ using ($1):($2) title "Expert" with linespoints, \ "< grep '^Motif:' efhand-calcium-eval.motif.txt | awk '{print $3,$7}'" \ using ($1):($2) title "eMotif" with linespoints system "convert -density 120 calcium.eps calcium.png" set output "nrpdb.eps" set size square 6.0/10,4.0/7 set xlabel "Sens" ,.5 set ylabel "PPV" 1.0 set title "Performance on Nonredundant PDB" set key outside samplen 1 plot \ "< awk '$6!=0 && $10!=0 {print $6,$10}' efhand-nrpdb-eval.r6.txt" \ using ($1):($2) title "SeqFEATURE" with linespoints, \ "< awk '$6!=0 && $10!=0 {print $6,$10}' liping-nrpdb-eval.r6.txt" \ using ($1):($2) title "Expert" with linespoints, \ "< grep '^Motif:' efhand-nrpdb-eval.motif.txt | awk '{print $3,$7}'" \ using ($1):($2) title "eMotif" with linespoints system "convert -density 120 nrpdb.eps nrpdb.png"