]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_test/test/test_find_orfs
added tests to find_orfs
[biopieces.git] / bp_test / test / test_find_orfs
diff --git a/bp_test/test/test_find_orfs b/bp_test/test/test_find_orfs
new file mode 100755 (executable)
index 0000000..fe378bd
--- /dev/null
@@ -0,0 +1,27 @@
+#!/bin/bash
+
+source "$BP_DIR/bp_test/lib/test.sh"
+
+run "$bp -I $in -O $tmp"
+assert_no_diff $tmp $out.1
+clean
+
+run "$bp -I $in -s 'GTG' -O $tmp"
+assert_no_diff $tmp $out.2
+clean
+
+run "$bp -I $in -S 'TAA' -O $tmp"
+assert_no_diff $tmp $out.3
+clean
+
+run "$bp -I $in -m 700 -O $tmp"
+assert_no_diff $tmp $out.4
+clean
+
+run "$bp -I $in -M 100 -O $tmp"
+assert_no_diff $tmp $out.5
+clean
+
+run "$bp -I $in -n -O $tmp"
+assert_no_diff $tmp $out.6
+clean