test commits after fsfs transfer
[bioperl-live.git] / t / Gel.t
blobbcbf7bc872baca8dfce5452e7a1b7686935f0102
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 use strict;
6 BEGIN { 
7     use lib 't/lib';
8     use BioperlTest;
9     
10     test_begin(-tests => 9);
11         
12     use_ok('Bio::PrimarySeq');
13     use_ok('Bio::Restriction::Analysis');
14     use_ok('Bio::Tools::Gel');
17 my $seq1 = Bio::PrimarySeq->new(-id=>'groundhog day',
18                                 -seq=>'AAAAAAAAAGAATTCTTTTTTTTTTTTTTGAATTCGGGGGGGGGGGGGGGGGGGG');
20 my $ra=Bio::Restriction::Analysis->new(-seq=>$seq1);
21 is my @cuts = $ra->fragments('EcoRI'), 3;
23 ok my $gel = Bio::Tools::Gel->new(-seq=>\@cuts,-dilate=>10);
24 ok my %bands = $gel->bands;
25 my @bands = (26, 27, 30);
26 my $c = 0;
27 foreach my $band (sort {$b <=> $a} keys %bands){
28     #print $band,"\t",  sprintf("%.1f", $bands{$band}), "\n";
29     is $bands[$c],  sprintf("%.0f", $bands{$band});
30     $c++;