]> git.donarmstrong.com Git - biopieces.git/blob - bp_test/test/test_write_fasta
ba772cab5daacfaaea79961ace54d1e7535ec3e2
[biopieces.git] / bp_test / test / test_write_fasta
1 #!/bin/bash
2
3 source "$BP_DIR/bp_test/lib/test.sh"
4
5 run "write_fasta -I $in -o $tmp -x"
6 assert_no_diff $tmp $out.1
7 rm $tmp
8
9 run "write_fasta -I $in -w 4 -o $tmp -x"
10 assert_no_diff $tmp $out.2
11 rm $tmp
12
13 run "write_fasta -I $in -w 4 -Z -o $tmp.gz -x"
14 gunzip $tmp.gz
15 assert_no_diff $tmp $out.3
16 rm $tmp