Skip to content
Snippets Groups Projects
Commit e94c2320 authored by Graham McVicker's avatar Graham McVicker
Browse files

Error message was not interpolated, but should have been.

parent d941906e
No related branches found
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ sub fetch_by_region {
$end = $length if(!defined($end));
if($end < $start) {
throw('start [$start] must be less than or equal to end [$end]');
throw("start [$start] must be less than or equal to end [$end]");
}
return Bio::EnsEMBL::Slice->new(-COORD_SYSTEM => $cs,
......
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