From 451cf293aab251e0632eccbc741e73e5a6eacdd2 Mon Sep 17 00:00:00 2001 From: Michael Axtell Date: Wed, 11 Jul 2018 19:03:01 -0400 Subject: [PATCH] version 4.5 --- CleaveLand4.pl | 44 +++++++++++++++++++------------------------- README | 4 ++-- 2 files changed, 21 insertions(+), 27 deletions(-) diff --git a/CleaveLand4.pl b/CleaveLand4.pl index ffea1b1..a8def64 100755 --- a/CleaveLand4.pl +++ b/CleaveLand4.pl @@ -4,7 +4,7 @@ use Getopt::Std; use Math::CDF 'pbinom'; -my $version_number = "4.4"; +my $version_number = "4.5"; my $help = help_message($version_number); # if there are no arguments, return the help message and quit @@ -360,40 +360,34 @@ sub check_bowtie_version { unless($opt_q) { print STDERR "\tbowtie: "; } - (open(BTV, "bowtie --version |")) || return 0; + open(BTV, "which bowtie |"); my $vline = ; close BTV; - my $version; - if($vline =~ /^bowtie version (\S+)/) { - $version = $1; - if(($version =~ /^0\.12/) or ($version =~ /^1\./)) { - unless($opt_q) { - print STDERR "PASS version $version\n"; - } - return 1; - } else { - return 0; - } + unless($vline) { + return 0; + } + if($vline =~ /bowtie$/) { + print STDERR "PASS: $vline"; + return 1; } else { return 0; } - # should never be here - return 0; } sub check_bowtie_build_version { unless($opt_q) { print STDERR "\tbowtie-build: "; } - (open(BBV, "bowtie-build --version |")) || return 0; - my $vline = ; - close BBV; - if($vline =~ /^bowtie-build version (\S+)/) { - unless($opt_q) { - print STDERR "PASS version $1\n"; - } + open(BTV, "which bowtie-build |"); + my $vline = ; + close BTV; + unless($vline) { + return 0; + } + if($vline =~ /bowtie-build$/) { + print STDERR "PASS: $vline"; return 1; - } else { + } else { return 0; } } @@ -1217,7 +1211,7 @@ =head1 LICENSE CleaveLand4.pl -Copyright (c) 2013 Michael J. Axtell +Copyright (c) 2013-2018 Michael J. Axtell This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -1242,7 +1236,7 @@ =head1 AUTHOR =head1 VERSION -4.3 : November 7, 2013 +4.5 : July 11, 2018 =head1 INSTALL diff --git a/README b/README index e03426f..3174cc3 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ LICENSE CleaveLand4.pl - Copyright (c) 2013 Michael J. Axtell + Copyright (c) 2013-2018 Michael J. Axtell This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the @@ -24,7 +24,7 @@ AUTHOR Michael J. Axtell, Penn State University, mja18@psu.edu VERSION - 4.3 : November 7, 2013 + 4.5 : July 11, 2018 INSTALL Dependencies - Required Perl Modules