File: math.test

package info (click to toggle)
toppred 1.10-10
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 928 kB
  • sloc: sh: 3,556; ansic: 2,342; makefile: 72
file content (15 lines) | stat: -rwxr-xr-x 306 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh

### Set verbose mode
test "x$VERBOSE" = "xx" && set -x

## check gnuplot availability
(gnuplot --version) >/dev/null 2>&1 || exit 77

### Set environnement
TOPPREDDATA=$srcdir/../data; export TOPPREDDATA

## Call program
../src/toppred -g png $srcdir/seq_zero_div.fasta >/dev/null 2>&1

exit 0