Skip to content

Commit

Permalink
Updated documentation in preparation for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWingett committed Sep 20, 2024
1 parent 7d1bb6e commit b9d0ebc
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 6 deletions.
12 changes: 11 additions & 1 deletion RELEASE_NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Release notes for FastQ Screen v0.16.0 (20 September 2024)
----------------------------------------------------------
Added functionality to process long sequence reads by using
Minimap2 as the aligner.

We would like to thank Martin Pollard (Wellcome Sanger
Institute, UK) for contributing this improvement.



Release notes for FastQ Screen v0.15.3 (03 April 2023)
--------------------------------------------------------
------------------------------------------------------
Fixed filtering bug causing the final filtered FASTQ
file to have the file extension .fastq when it should be
.fastq.gz, since the file is actually gzipped.
Expand Down
6 changes: 4 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,9 +255,9 @@ FastQ Screen Options Summary
============================
**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'

**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.
**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.

**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.
**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.

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

Expand All @@ -267,6 +267,8 @@ FastQ Screen Options Summary

**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.

**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.

**conf \<path\> :** Manually specify a location for the configuration.

**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).
Expand Down
7 changes: 4 additions & 3 deletions fastq_screen
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ use File::Path;
use Data::Dumper;


our $VERSION = "0.15.3";
our $VERSION = "0.16.0";

###########################################################################
###########################################################################
## ##
## Copyright 2023, Simon Andrews (The Babraham Institute, UK) ##
## Copyright 2024, Simon Andrews (The Babraham Institute, UK) ##
## Steven Wingett (MRC-LMB, Cambridge, UK) ##
## Felix Krueger (The Babraham Institute, UK) ##
## Mark Fiers (Plant & Food Research, NZ) ##
## Martin Pollard (Wellcome Sanger Institute, UK) ##
## ##
## 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 Down Expand Up @@ -2731,4 +2732,4 @@ Options
--version Print the program version and exit.
2020 Babraham Institute, Cambridge, UK
2024 Babraham Institute, Cambridge, UK

0 comments on commit b9d0ebc

Please sign in to comment.