Skip to content
Snippets Groups Projects
Commit e420be71 authored by Abel Ureta-Vidal's avatar Abel Ureta-Vidal
Browse files

Added identical_matches and positive_matches methods mainly for use in...

Added identical_matches and positive_matches methods mainly for use in homologous gene pairing pipeline, but may be useful for others
parent f51c8765
No related branches found
No related tags found
No related merge requests found
......@@ -538,4 +538,44 @@ sub hspecies{
return $self->{'_hspecies'};
}
=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'};
}
1;
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