]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_test/test/test_write_tab
added test for blast biopieces
[biopieces.git] / bp_test / test / test_write_tab
index b24c6281655454353db2f1ee3a80b53b01a77d6e..21e9e352c3e1f8619efface21ce76601225bad93 100755 (executable)
@@ -2,27 +2,27 @@
 
 source "$BP_DIR/bp_test/lib/test.sh"
 
-run "write_tab -I $in -o $tmp -x"
+run "$bp -I $in -o $tmp -x"
 assert_no_diff $tmp $out.1
 rm $tmp
 
-run "write_tab -I $in -c -o $tmp -x"
+run "$bp -I $in -c -o $tmp -x"
 assert_no_diff $tmp $out.2
 rm $tmp
 
-run "write_tab -I $in -d ',' -o $tmp -x"
+run "$bp -I $in -d ',' -o $tmp -x"
 assert_no_diff $tmp $out.3
 rm $tmp
 
-run "write_tab -I $in -Z -o $tmp.gz -x"
+run "$bp -I $in -Z -o $tmp.gz -x"
 gunzip $tmp.gz
 assert_no_diff $tmp $out.4
 rm $tmp
 
-run "write_tab -I $in -k 'Count' -o $tmp -x"
+run "$bp -I $in -k 'Count' -o $tmp -x"
 assert_no_diff $tmp $out.5
 rm $tmp
 
-run "write_tab -I $in -K 'Count' -o $tmp -x"
+run "$bp -I $in -K 'Count' -o $tmp -x"
 assert_no_diff $tmp $out.6
 rm $tmp