]> git.donarmstrong.com Git - biopieces.git/blobdiff - bp_test/test/test_write_fasta
ported write_fasta to ruby enabling bzip2 support
[biopieces.git] / bp_test / test / test_write_fasta
index 68f37ce7e5ec796a6a7009a4b9f1a5c01513fd7b..4307e2590cd68261d3c82b0919420bb23fae9b67 100755 (executable)
@@ -10,7 +10,12 @@ run "$bp -I $in -w 4 -o $tmp -x"
 assert_no_diff $tmp $out.2
 clean
 
-run "$bp -I $in -w 4 -Z -o $tmp.gz -x"
+run "$bp -I $in -w 4 -Z gzip -o $tmp.gz -x"
 gunzip $tmp.gz
 assert_no_diff $tmp $out.3
 clean
+
+run "$bp -I $in -w 4 -Z bzip2 -o $tmp.bz2 -x"
+bunzip2 $tmp.bz2
+assert_no_diff $tmp $out.3
+clean