From 8f398bb172b0afe672e3fb2e0b99693d0499f496 Mon Sep 17 00:00:00 2001 From: Felix Krueger Date: Wed, 31 Jul 2024 10:00:27 +0100 Subject: [PATCH] Changed shebang --- filter_non_conversion | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/filter_non_conversion b/filter_non_conversion index 73d1f98..e3aeb44 100755 --- a/filter_non_conversion +++ b/filter_non_conversion @@ -1,4 +1,4 @@ -#!/usr/bin/perl +#!/usr/bin/env perl use warnings; use strict; use Getopt::Long; @@ -6,7 +6,7 @@ use Cwd; $|++; -## This program is Copyright (C) 2010-23, Felix Krueger (fkrueger@altoslabs.com) +## This program is Copyright (C) 2010-24, Felix Krueger (fkrueger@altoslabs.com) ## 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 @@ -22,7 +22,7 @@ $|++; ## along with this program. If not, see . my $parent_dir = getcwd(); -my $filter_version = 'v0.24.2'; +my $filter_version = 'v0.24.2dev'; my ($global_single,$global_paired,$samtools_path,$threshold,$consecutive,$percentage_cutoff,$minimum_count) = process_commandline(); @@ -716,7 +716,7 @@ by read name first (e.g. using samtools sort -n) *** --version Displays version information and exits. - Last modified: 10 February 2021 + Last modified: 31 July 2024 EOF ;