1 # -*-Perl-*- Test Harness script for Bioperl
9 test_begin(-tests => 2,
10 -requires_module => 'Data::Stag');
15 my $verbose = test_debug();
17 # currently chaosxml is write-only
18 my $in = Bio::SeqIO->new(-format => 'genbank',
20 -file => test_input_file('AE003644_Adh-genomic.gb'));
22 my $seq = $in->next_seq;
24 my $out_file = test_output_file();
25 my $out = Bio::SeqIO->new(-file => ">$out_file",
27 -format => 'chaosxml');
28 $out->write_seq($seq);