-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d840eac
commit 8f398bb
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ([email protected]) | ||
## This program is Copyright (C) 2010-24, Felix Krueger ([email protected]) | ||
|
||
## 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 <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(); | ||
|
||
|
@@ -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 | ||
; | ||
|