Skip to content
Snippets Groups Projects
Commit c86d6b5f authored by Magali Ruffier's avatar Magali Ruffier
Browse files

exons in PredictionTranscript are PredictionExons

parent be1ca0dd
No related branches found
No related tags found
No related merge requests found
......@@ -108,21 +108,21 @@ ok(&Bio::EnsEMBL::Test::TestUtils::test_getter_setter($pt, 'adaptor', $pta));
#
$pt = new Bio::EnsEMBL::PredictionTranscript();
my $exon = new Bio::EnsEMBL::Exon;
my $exon = new Bio::EnsEMBL::PredictionExon;
$exon->start(40);
$exon->end(50);
$exon->slice( $slice );
$exon->strand( 1 );
$pt->add_Exon($exon);
$exon = new Bio::EnsEMBL::Exon;
$exon = new Bio::EnsEMBL::PredictionExon;
$exon->start(20);
$exon->end(30);
$exon->slice( $slice );
$exon->strand( 1 );
$pt->add_Exon($exon);
$exon = new Bio::EnsEMBL::Exon;
$exon = new Bio::EnsEMBL::PredictionExon;
$exon->start( 1 );
$exon->end(10);
$exon->slice( $slice );
......@@ -144,21 +144,21 @@ ok( $all_exons->[2]->end() == 50 );
$pt = new Bio::EnsEMBL::PredictionTranscript();
$exon = new Bio::EnsEMBL::Exon;
$exon = new Bio::EnsEMBL::PredictionExon;
$exon->start(40);
$exon->end(50);
$exon->slice( $slice );
$exon->strand( -1 );
$pt->add_Exon($exon);
$exon = new Bio::EnsEMBL::Exon;
$exon = new Bio::EnsEMBL::PredictionExon;
$exon->start( 1 );
$exon->end(10);
$exon->slice( $slice );
$exon->strand( -1 );
$pt->add_Exon($exon);
$exon = new Bio::EnsEMBL::Exon;
$exon = new Bio::EnsEMBL::PredictionExon;
$exon->start(20);
$exon->end(30);
$exon->slice( $slice );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment