]> git.donarmstrong.com Git - biopieces.git/blob - bp_test/test/test_read_tab
added tests to find_orfs
[biopieces.git] / bp_test / test / test_read_tab
1 #!/bin/bash
2
3 source "$BP_DIR/bp_test/lib/test.sh"
4
5 run "$bp -i $in.1 -O $tmp"
6 assert_no_diff $tmp $out.1
7 clean
8
9 run "$bp -i $in.1 -s 1 -O $tmp"
10 assert_no_diff $tmp $out.2
11 clean
12
13 run "$bp -i $in.1 -s 1 -k ORGANISM,SEQ,COUNT -O $tmp"
14 assert_no_diff $tmp $out.3
15 clean
16
17 run "$bp -i $in.1 -s 1 -c 2,1 -O $tmp"
18 assert_no_diff $tmp $out.4
19 clean
20
21 run "$bp -i $in.1 -s 1 -c 2,1 -k COUNT,SEQ -O $tmp"
22 assert_no_diff $tmp $out.5
23 clean
24
25 run "$bp -i $in.2 -O $tmp"
26 assert_no_diff $tmp $out.6
27 clean
28
29 run "$bp -i $in.2 -n 1 -O $tmp"
30 assert_no_diff $tmp $out.7
31 clean
32
33 run "$bp -i $in.3 -d ';' -O $tmp"
34 assert_no_diff $tmp $out.8
35 clean