Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:bioperl/bioperl-live
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Fields committed May 17, 2010
2 parents 5fcfaae + 859408b commit 2831245
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Bio/SeqIO/abi.pm
Expand Up @@ -24,7 +24,7 @@ Do not use this module directly. Use it via the Bio::SeqIO class.
This object can transform Bio::Seq objects to and from abi trace
files. To optionally read the trace graph data (which can be used
to draw chromatographs, for instance), set the optional
'-read_graph_data' flag or the read_graph_data method to a value
'-get_trace_data' flag or the get_trace_data method to a value
evaluating to TRUE.
=head1 FEEDBACK
Expand Down Expand Up @@ -182,7 +182,7 @@ sub write_seq {

sub get_trace_data {
my ($self, $val) = @_;
$self->{_get_trace_data} = $val ? 1 : 0;
$self->{_get_trace_data} = $val ? 1 : 0 if (defined $val);
$self->{_get_trace_data};
}

Expand Down

0 comments on commit 2831245

Please sign in to comment.