1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id: selex.t 14971 2008-10-28 16:08:52Z cjfields $
10 test_begin(-tests => 4);
12 use_ok('Bio::AlignIO::selex');
15 my $DEBUG = test_debug();
17 my ($str,$aln,$strout,$status);
20 $str = Bio::AlignIO->new(
21 '-file' => test_input_file("testaln.selex"),
22 '-format' => 'selex');
23 $aln = $str->next_aln();
24 isa_ok($aln,'Bio::Align::AlignI');
25 is $aln->get_seq_by_pos(1)->get_nse, 'HSFAU/1-518', "selex format test ";
27 $strout = Bio::AlignIO->new(
28 '-file' => ">".test_output_file(),
29 '-format' => 'selex');
30 $status = $strout->write_aln($aln);
31 is $status, 1, "selex output test";