Skip to content

Commit 017435b

Browse files
committed
Prepared FastQ Screen for next release
1 parent b9dfc15 commit 017435b

File tree

2 files changed

+10
-14
lines changed

2 files changed

+10
-14
lines changed

RELEASE_NOTES.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Release notes for FastQ Screen v0.15.3 (03 April 2023)
2+
--------------------------------------------------------
3+
Fixed filtering bug causing the final filtered FASTQ
4+
file to have the file extension .fastq when it should be
5+
.fastq.gz, since the file is actually gzipped.
6+
7+
8+
19
Release notes for FastQ Screen v0.15.2 (26 January 2022)
210
--------------------------------------------------------
311
Updated documentation

fastq_screen

+2-14
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ use File::Path;
1313
use Data::Dumper;
1414

1515

16-
our $VERSION = "0.15.3.dev";
16+
our $VERSION = "0.15.3";
1717

1818
###########################################################################
1919
###########################################################################
2020
## ##
21-
## Copyright 2022, Simon Andrews (The Babraham Institute, UK) ##
21+
## Copyright 2023, Simon Andrews (The Babraham Institute, UK) ##
2222
## Steven Wingett (MRC-LMB, Cambridge, UK) ##
2323
## Felix Krueger (The Babraham Institute, UK) ##
2424
## Mark Fiers (Plant & Food Research, NZ) ##
@@ -163,7 +163,6 @@ if(defined $get_genomes){
163163
exit(0);
164164
}
165165

166-
167166
# Identify input files
168167
my @files = get_paths(@ARGV);
169168

@@ -174,7 +173,6 @@ foreach my $file (@files) {
174173
}
175174
}
176175

177-
178176
if(defined $filter){
179177
die "Option --filter not in the correct format, see --help for more details.\n" unless($filter =~ /^[012345-]+$/);
180178
die "Option --filter may not contain only hyphens '-'\n" if($filter =~ /^-+$/);
@@ -322,19 +320,9 @@ if ( ( ( 1 << 32 ) != 4294967296 ) and ( scalar @libraries > 15 ) ) { #32-bit
322320
die "Maximum number of reference genomes exceeded, please adjust configuration and specify at most 32 libraries.\n";
323321
}
324322

325-
#my @files = get_paths(@ARGV);
326323

327324
die "No files to process\n" unless (@files);
328325

329-
#If the --no_hits option is selected, decide whether the output should be
330-
#be compressed by assessing whether any of the input is compressed
331-
#foreach my $file (@files) {
332-
# if ( $file =~ /\.gz$/ ) {
333-
# $zip_data_output = 1;
334-
# last;
335-
# }
336-
#}
337-
338326
my $index = 0;
339327
while ( $index <= $#files ) {
340328
process_file( $files[$index] );

0 commit comments

Comments
 (0)