Removing from HEAD (deprecated for 1.6)
[bioperl-live.git] / t / Map / MicrosatelliteMarker.t
blobd4a9d2d1a4811466d9d8475d0b2d378879146149
1 # -*-Perl-*- Test Harness script for Bioperl
2 # $Id$
4 use strict;
6 BEGIN {
7     use lib '.';
8     use Bio::Root::Test;
9     
10     test_begin(-tests => 8);
11         
12         use_ok('Bio::Map::SimpleMap');
13         use_ok('Bio::Map::Position');
14         use_ok('Bio::Map::Microsatellite');
17 my $map = Bio::Map::SimpleMap->new(-units => 'MB',
18                                   -type  => 'oo-121');
19 my $position = Bio::Map::Position->new(-map => $map,
20                                       -value => 20
21                                       );
23 my $o_usat = Bio::Map::Microsatellite->new
24     (-name=>'Chad Super Marker 2',
25      -sequence => 'gctgactgatcatatatatatatatatatatatatatatatcgcgatcgtgatttt',
26      -motif => 'at',
27      -repeats => 15,
28      -repeat_start_position => 12,
29      -position => $position,
30      );
32 is($o_usat->get_leading_flank(), "gctgactgatc");
33 is($o_usat->get_trailing_flank(), "cgcgatcgtgatttt");
34 is($o_usat->motif(), 'at');
35 is($o_usat->repeats(), 15);
36 is($o_usat->repeat_start_position, 12);