BioPerl
view release on metacpan or search on metacpan
Bio/DB/SeqFeature/Store/GFF2Loader.pm view on Meta::CPAN
=cut
# sub time { } inherited
=item unescape
my $unescaped = GFF2Loader::unescape($escaped)
This is an internal utility. It is the same as CGI::Util::unescape,
but doesn't change pluses into spaces and ignores unicode escapes.
=cut
# sub unescape { } inherited
1;
__END__
=back
Bio/DB/SeqFeature/Store/GFF3Loader.pm view on Meta::CPAN
=cut
# sub time { } inherited
=item unescape
my $unescaped = GFF3Loader::unescape($escaped)
This is an internal utility. It is the same as CGI::Util::unescape,
but doesn't change pluses into spaces and ignores unicode escapes.
=cut
# sub unescape { } inherited
sub _remap {
my $self = shift;
my ($ref,$start,$end,$strand) = @_;
my $mapper = $self->coordinate_mapper;
return ($ref,$start,$end,$strand) unless $mapper;
Bio/DB/SeqFeature/Store/Loader.pm view on Meta::CPAN
sub time {
return Time::HiRes::time() if Time::HiRes->can('time');
return time();
}
=item unescape
my $unescaped = GFF3Loader::unescape($escaped)
This is an internal utility. It is the same as CGI::Util::unescape,
but doesn't change pluses into spaces and ignores unicode escapes.
=cut
sub unescape {
my $self = shift;
my $todecode = shift;
$todecode =~ s/%([0-9a-fA-F]{2})/chr hex($1)/ge;
return $todecode;
}
( run in 0.572 second using v1.01-cache-2.11-cpan-88abd93f124 )