Skip to content

Commit

Permalink
Changed shebang
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixKrueger committed Jul 31, 2024
1 parent d840eac commit 8f398bb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions filter_non_conversion
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/perl
#!/usr/bin/env perl
use warnings;
use strict;
use Getopt::Long;
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
Expand All @@ -22,7 +22,7 @@ $|++;
## along with this program. If not, see <http://www.gnu.org/licenses/>.

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();

Expand Down Expand Up @@ -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
;
Expand Down

0 comments on commit 8f398bb

Please sign in to comment.