Skip to content

Commit 8ab828f

Browse files
committed
removing Bio::Kmer from this actual package to avoid cpan confusion
1 parent b966948 commit 8ab828f

File tree

5 files changed

+12
-726
lines changed

5 files changed

+12
-726
lines changed

MANIFEST

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ bin/mashtree_bootstrap.pl
66
bin/min_abundance_finder.pl
77
CHANGES
88
docs/SQL.md
9-
lib/Bio/Kmer.pm
109
lib/Mashtree.pm
1110
lib/Mashtree/Db.pm
1211
lib/Mashtree/Mash.pm

Makefile.PL

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ use 5.010;
55

66
use ExtUtils::MakeMaker;
77

8+
use FindBin qw/$RealBin/;
9+
use lib "$RealBin/lib";
10+
use lib "$RealBin/lib/perl5";
11+
812
# Some help from
913
# http://blogs.perl.org/users/michal_wojciechowski/2011/11/github-friendly-readme-files-with-extutils-makemaker-and-module-build.html
1014
my $preop = 'true;';
@@ -58,7 +62,7 @@ WriteMakefile1(
5862
'Bio::Tree::Statistics'=> 0,
5963
'Bio::Tree::DistanceFactory'=> 0,
6064
'Bio::Sketch::Mash' => 0, # ensures that Mash gets loaded
61-
#'Bio::Kmer' => 0.19,
65+
'Bio::Kmer' => 0.26,
6266
#'Graph::Dijkstra'=> 0,
6367
#'Readonly' => 0,
6468
'JSON' => '2.90',

0 commit comments

Comments
 (0)