#! /bin/bash # Last edited on 2005-06-04 00:29:08 by stolfi usage="plot-estimates < INFILE.est > CPLOT.eps" # Reads an ".est" file produced by the predictor "pre". # Plots the true coding/noncoding indicator Is(C) # and the estimated probability Pr(C) for each base. tmp="/tmp/$$" datafile="${tmp}.dat" # Extract fields from ".est" file: cat \ | plot-estimates-aux \ > ${datafile} # plot gnuplot <