Skip to content

Commit b9d0ebc

Browse files
committed
Updated documentation in preparation for next release
1 parent 7d1bb6e commit b9d0ebc

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

RELEASE_NOTES.txt

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
1+
Release notes for FastQ Screen v0.16.0 (20 September 2024)
2+
----------------------------------------------------------
3+
Added functionality to process long sequence reads by using
4+
Minimap2 as the aligner.
5+
6+
We would like to thank Martin Pollard (Wellcome Sanger
7+
Institute, UK) for contributing this improvement.
8+
9+
10+
111
Release notes for FastQ Screen v0.15.3 (03 April 2023)
2-
--------------------------------------------------------
12+
------------------------------------------------------
313
Fixed filtering bug causing the final filtered FASTQ
414
file to have the file extension .fastq when it should be
515
.fastq.gz, since the file is actually gzipped.

docs/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ FastQ Screen Options Summary
255255
============================
256256
**add_genome \<text\> :** Edits the file 'fastq_screen.conf' (in the folder where this script is saved) to add a new genome. Specify the additional genome as a comma separated list: 'Database name','Genome path and basename','Notes'
257257

258-
**aligner \<func\> :** Specify the aligner to use for the mapping. Valid arguments are 'bowtie', bowtie2' (default) or 'bwa'. Bowtie maps with parameters -k 2, Bowtie 2 with parameters -k 2 --very-fast-local and BWA with mem -a. Local aligners such as BWA or Bowtie2 will be better at detecting the origin of chimeric reads.
258+
**aligner \<func\> :** Specify the aligner to use for the mapping. Valid arguments are 'bowtie', bowtie2' (default), 'bwa' or 'minimap2'. Bowtie maps with parameters -k 2, Bowtie 2 with parameters -k 2 --very-fast-local, BWA with mem -a and minimap2 uses default settings. Local aligners such as BWA or Bowtie2 will be better at detecting the origin of chimeric reads.
259259

260-
**bisulfite :** Process bisulfite libraries. Bismark runs in non-directional mode. The path to the bisulfite aligner (Bismark) may be specified in the configuration file. Either conventional or bisulfite libraries may be processed, but not both simultaneously. The --bisulfite option cannot be used in conjunction with --bwa.
260+
**bisulfite :** Process bisulfite libraries. Bismark runs in non-directional mode. The path to the bisulfite aligner (Bismark) may be specified in the configuration file. Either conventional or bisulfite libraries may be processed, but not both simultaneously. The --bisulfite option cannot be used in conjunction with --bwa.
261261

262262
**bismark \<text\> :** Specify extra parameters to be passed to Bismark. These parameters should be quoted to clearly delimit Bismark parameters from FastQ Screen parameters.
263263

@@ -267,6 +267,8 @@ FastQ Screen Options Summary
267267

268268
**bwa \<text\> :** Specify extra parameters to be passed to BWA. These parameters should be quoted to clearly delimit BWA parameters from FastQ Screen parameters. You should not try to use this option to override the normal search or reporting options for BWA which are set automatically but it might be useful to allow reads to be trimmed before alignment etc.
269269

270+
**minimap2 \<text\> :** Specify extra parameters to be passed to Minimap2. These parameters should be quoted to clearly delimit BWA parameters from FastQ Screen parameters. You should not try to use this option to override the normal search or reporting options for BWA which are set automatically but it might be useful to allow reads to be trimmed before alignment etc.
271+
270272
**conf \<path\> :** Manually specify a location for the configuration.
271273

272274
**filter \<text\> :** Produce a FASTQ file containing reads mapping to specified genomes. Pass the argument a string of characters (0, 1, 2, 3, -), in which each character corresponds to a reference genome (in the order the reference genome occurs in the configuration file).

fastq_screen

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,16 @@ use File::Path;
1313
use Data::Dumper;
1414

1515

16-
our $VERSION = "0.15.3";
16+
our $VERSION = "0.16.0";
1717

1818
###########################################################################
1919
###########################################################################
2020
## ##
21-
## Copyright 2023, Simon Andrews (The Babraham Institute, UK) ##
21+
## Copyright 2024, 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) ##
25+
## Martin Pollard (Wellcome Sanger Institute, UK) ##
2526
## ##
2627
## This program is free software: you can redistribute it and/or modify ##
2728
## it under the terms of the GNU General Public License as published by ##
@@ -2731,4 +2732,4 @@ Options
27312732
27322733
--version Print the program version and exit.
27332734
2734-
2020 Babraham Institute, Cambridge, UK
2735+
2024 Babraham Institute, Cambridge, UK

0 commit comments

Comments
 (0)