-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed version info for minor release
- Loading branch information
FelixKrueger
committed
Jul 26, 2021
1 parent
5679802
commit 73844f4
Showing
12 changed files
with
21 additions
and
21 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 |
---|---|---|
|
@@ -6,7 +6,7 @@ use Getopt::Long; | |
use Cwd; | ||
use Carp; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -23,7 +23,7 @@ use Carp; | |
|
||
my %chromosomes; # storing sequence information of all chromosomes/scaffolds | ||
my %processed; # keeping a record of which chromosomes have been processed | ||
my $nome_version = 'v0.23.0'; | ||
my $nome_version = 'v0.23.1'; | ||
|
||
my ($output_dir,$genome_folder,$zero,$CpG_only,$CX_context,$split_by_chromosome,$parent_dir,$coverage_infile,$cytosine_out,$merge_CpGs,$gc_context,$gzip,$nome) = process_commandline(); | ||
|
||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ use Getopt::Long; | |
use Cwd; | ||
use Carp; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -31,7 +31,7 @@ my %freqs; # keeping a record of which chromosomes have been processed | |
my %genomic_freqs; | ||
my %processed; | ||
|
||
my $bam2nuc_version = 'v0.23.0'; | ||
my $bam2nuc_version = 'v0.23.1'; | ||
|
||
my ($output_dir,$genome_folder,$parent_dir,$samtools_path,$genome_freq_only) = process_commandline(); | ||
|
||
|
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ use Getopt::Long; | |
use FindBin qw($RealBin); | ||
use lib "$RealBin/../lib"; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -25,7 +25,7 @@ use lib "$RealBin/../lib"; | |
|
||
|
||
my $parent_dir = getcwd(); | ||
my $bismark_version = 'v0.23.0'; | ||
my $bismark_version = 'v0.23.1'; | ||
my $start_run = time(); | ||
my $command_line = join (" ",@ARGV); | ||
|
||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ use Getopt::Long; | |
use Cwd; | ||
use Carp; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -21,7 +21,7 @@ use Carp; | |
## You should have received a copy of the GNU General Public License | ||
## along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
my $bismark2bedGraph_version = 'v0.23.0'; | ||
my $bismark2bedGraph_version = 'v0.23.1'; | ||
|
||
my @bedfiles; | ||
my @methylcalls = qw (0 0 0); # [0] = methylated, [1] = unmethylated, [2] = total | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ use Getopt::Long; | |
use FindBin qw($RealBin); | ||
use lib "$RealBin/../lib"; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -20,7 +20,7 @@ use lib "$RealBin/../lib"; | |
## You should have received a copy of the GNU General Public License | ||
## along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
my $bismark2report_version = 'v0.23.0'; | ||
my $bismark2report_version = 'v0.23.1'; | ||
my (@alignment_reports,@dedup_reports,@splitting_reports,@mbias_reports,@nuc_reports); | ||
|
||
my ($output_dir,$verbose,$manual_output_file) = process_commandline(); | ||
|
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 |
---|---|---|
|
@@ -5,7 +5,7 @@ use Getopt::Long; | |
use FindBin qw($RealBin); | ||
use lib "$RealBin/../lib"; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger <[email protected]>. | ||
## This program is Copyright (C) 2010-21, Felix Krueger <[email protected]>. | ||
## Thanks to Phil Ewels <[email protected]> (who wrote a first version of this | ||
## script in 2013 or so when it was still 'legal' to use Highcharts.js (or maybe it | ||
## never was?....)) | ||
|
@@ -22,7 +22,7 @@ use lib "$RealBin/../lib"; | |
|
||
## You should have received a copy of the GNU General Public License | ||
## along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
my $bismark_version = '0.22.4'; | ||
my $bismark_version = '0.23.1'; | ||
|
||
# Last modified 09 11 2020 | ||
|
||
|
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ use Carp; | |
use FindBin qw($RealBin); | ||
use lib "$RealBin/../lib"; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -29,7 +29,7 @@ my $parent_dir = getcwd(); | |
|
||
my %fhs; | ||
|
||
my $version = 'v0.23.0'; | ||
my $version = 'v0.23.1'; | ||
my ($ignore,$genomic_fasta,$single,$paired,$full,$report,$no_overlap,$merge_non_CpG,$output_dir,$no_header,$bedGraph,$remove,$coverage_threshold,$counts,$cytosine_report,$genome_folder,$zero,$CpG_only,$CX_context,$split_by_chromosome,$sort_size,$samtools_path,$gzip,$ignore_r2,$mbias_off,$mbias_only,$gazillion,$ample_mem,$ignore_3prime,$ignore_3prime_r2,$multicore,$yacht,$ucsc) = process_commandline(); | ||
|
||
### only needed for bedGraph output | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ use Getopt::Long; | |
use Cwd; | ||
use Carp; | ||
|
||
## This program is Copyright (C) 2010-20, Felix Krueger ([email protected]) | ||
## This program is Copyright (C) 2010-21, 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 | ||
|
@@ -23,7 +23,7 @@ use Carp; | |
my %chromosomes; # storing sequence information of all chromosomes/scaffolds | ||
my %processed; # keeping a record of which chromosomes have been processed | ||
my %context_summary; # storing methylation values for all contexts for NOMe-seq or scNMT-experiments | ||
my $coverage2cytosine_version = 'v0.23.0'; | ||
my $coverage2cytosine_version = 'v0.23.1'; | ||
|
||
my ($output_dir,$genome_folder,$zero,$CpG_only,$CX_context,$split_by_chromosome,$parent_dir,$coverage_infile,$cytosine_out,$merge_CpGs,$gc_context,$gzip,$tetra,$nome,$disco,$threshold,$drach) = process_commandline(); | ||
|
||
|
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
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
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