Skip to content
Snippets Groups Projects
Commit 07ef7709 authored by Jessica Severin's avatar Jessica Severin
Browse files

added back in lost methods identical_matches and positive_matches

parent 4c94d6c2
No related branches found
No related tags found
No related merge requests found
......@@ -371,6 +371,47 @@ sub display_id {
}
=head2 identical_matches
Arg [1] : int $identical_matches (optional)
Example :
Description: get/set on the number of identical matches
Returntype : int
Execeptions: none
Caller : general
=cut
sub identical_matches{
my ($self,$arg) = @_;
if (defined($arg)) {
return $self->{'_identical_matches'} = $arg;
}
return $self->{'_identical_matches'};
}
=head2 positive_matches
Arg [1] : int $positive_matches (optional)
Example :
Description: get/set on the number of positive matches
Returntype : int
Execeptions: none
Caller : general
=cut
sub positive_matches{
my ($self,$arg) = @_;
if (defined($arg)) {
return $self->{'_positive_matches'} = $arg;
}
return $self->{'_positive_matches'};
}
=head1 DEPRECATED METHODS
=cut
......
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