From 324d4205112faaeca541c0bebe8432c5ffbd15d6 Mon Sep 17 00:00:00 2001 From: Andrew Yates <ayates@ebi.ac.uk> Date: Fri, 15 Nov 2013 14:25:37 +0000 Subject: [PATCH] Do not use deprecaated calls. add_gene() has become add_Gene() --- modules/t/operon_transcript.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/t/operon_transcript.t b/modules/t/operon_transcript.t index 695a48bc27..c142639b38 100644 --- a/modules/t/operon_transcript.t +++ b/modules/t/operon_transcript.t @@ -118,8 +118,8 @@ my $operon_transcript = -END => $end, -STRAND => $strand, -SLICE => $slice, -STABLE_ID=>"opt1", -ANALYSIS=>$analysis ); -$operon_transcript->add_gene($gene); -$operon_transcript->add_gene($gene2); +$operon_transcript->add_Gene($gene); +$operon_transcript->add_Gene($gene2); $operon->add_OperonTranscript($operon_transcript); is( $analysis, $operon_transcript->analysis(), "Analysis" ); @@ -128,7 +128,7 @@ my $operon_transcript2 = -END => $gene_start2, -STRAND => $strand, -SLICE => $slice, -STABLE_ID=>"opt2", -ANALYSIS=>$analysis ); -$operon_transcript2->add_gene($gene); +$operon_transcript2->add_Gene($gene); $operon->add_OperonTranscript($operon_transcript2); is( $analysis, $operon_transcript->analysis(), "Analysis" ); -- GitLab