1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
From a80e8a655a953301f71538f9088a613eb63d5a73 Mon Sep 17 00:00:00 2001
From: Chris Fields <cjfields@illinois.edu>
Date: Mon, 31 Mar 2025 22:41:51 -0500
Subject: [PATCH] fix error popping up with latest perl releases
Origin: https://github.com/bioperl/bioperl-live/commit/a80e8a655a953301f71538f9088a613eb63d5a73
Bug: https://github.com/bioperl/bioperl-live/issues/394
---
lib/Bio/Tools/Alignment/Consed.pm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/Bio/Tools/Alignment/Consed.pm b/lib/Bio/Tools/Alignment/Consed.pm
index 7aa46a871..b36906180 100644
--- a/lib/Bio/Tools/Alignment/Consed.pm
+++ b/lib/Bio/Tools/Alignment/Consed.pm
@@ -111,7 +111,7 @@ package Bio::Tools::Alignment::Consed;
use strict;
use FileHandle;
-use Dumpvalue qw(dumpValue);
+use Dumpvalue;
use Bio::Tools::Alignment::Trim;
use File::Spec;
--
2.51.0
|