]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_test/test/test_write_fastq
cleanup of analyze_vals added analyze_scores
[biopieces.git] / bp_test / test / test_write_fastq
index db9bbc23a8eb7df911a59adea0b4458b21cc19c6..40f8f13b4d71ee6dcf7c832d1b4a0f9f605700d5 100755 (executable)
@@ -6,7 +6,20 @@ run "$bp -I $in -o $tmp -x"
 assert_no_diff $tmp $out.1
 clean
 
-run "$bp -I $in -Z -o $tmp.gz -x"
+run "$bp -I $in -e base_33 -o $tmp -x"
+assert_no_diff $tmp $out.1
+clean
+
+run "$bp -I $in -e base_64 -o $tmp -x"
+assert_no_diff $tmp $out.2
+clean
+
+run "$bp -I $in -Z gzip -o $tmp.gz -x"
 gunzip $tmp.gz
 assert_no_diff $tmp $out.1
 clean
+
+run "$bp -I $in -Z bzip2 -o $tmp.bz2 -x"
+bunzip2 $tmp.bz2
+assert_no_diff $tmp $out.1
+clean