maint: remove Travis stuff which has been replaced with Github actions (#325)
[bioperl-live.git] / t / AlignIO / mega.t
blob5e3f3ab60456fc7a7c8d9c7d53de6ee1cfed194e
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id: mega.t 14971 2008-10-28 16:08:52Z cjfields $
4 use strict;
6 BEGIN {
7     use Bio::Root::Test;
8     
9     test_begin(-tests => 6);
10         
11         use_ok('Bio::AlignIO::mega');
14 my $DEBUG = test_debug();
16 my ($str,$aln,$strout,$status);
18 # MEGA
19 $str = Bio::AlignIO->new('-format' => 'mega',
20         '-file'   => test_input_file("testaln.mega"));
22 $aln = $str->next_aln();
23 isa_ok($aln,'Bio::Align::AlignI');
24 is($aln->get_seq_by_pos(1)->get_nse,'Human/1-141');
25 is($aln->get_seq_by_pos(2)->get_nse,'Horse/1-144');
26 $aln->unmatch();
27 is($aln->get_seq_by_pos(3)->subseq(1,10), 'V-LSAADKGN');
29 $strout = Bio::AlignIO->new('-format' => 'mega',
30           '-file'   => ">" .test_output_file());
32 $status = $strout->write_aln($aln);
33 is $status, 1, "mega output test";