Skip to content

Commit

Permalink
fixed unitialized values for -w warnings
Browse files Browse the repository at this point in the history
fixed methodname call where methodname had changed (dropped _)

svn path=/bioperl-microarray/trunk/; revision=11834
  • Loading branch information
allenday committed Sep 8, 2003
1 parent 4734dd6 commit 385aebd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Bio/Expression/Microarray/Affymetrix/ArrayDesign.pm
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ sub load_data {
$featuregroup = $self->featuregroup($self->_temp_name);
}

my($feature,$attrs) = $_ =~ /Cell(\d+)=(.+)/;
my($feature,$attrs) = (undef,undef);
($feature,$attrs) = $_ =~ /Cell(\d+)=(.+)/;
my @attrs = split /\t/, $attrs;

my %featureparams = (
Expand Down
2 changes: 1 addition & 1 deletion Bio/Expression/Microarray/Affymetrix/CelArray.pm
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ sub load_data {
#objects for them, because their values are necessary to recreate a
#CEL file.

$feature = Bio::Expression::Microarray::Affymetrix::CelFeature->new(
$feature = Bio::Expression::Microarray::Affymetrix::Feature->new(
x => $row[0],
y => $row[1]
);
Expand Down

0 comments on commit 385aebd

Please sign in to comment.