Skip to content

Commit f2c0f25

Browse files
Merge pull request #48 from StevenWingett/development
Development
2 parents d202a02 + 079cfe3 commit f2c0f25

6 files changed

+51
-23
lines changed

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
!Build/
2+
.last_cover_stats
3+
/META.yml
4+
/META.json
5+
/MYMETA.*
6+
*.o
7+
*.pm.tdy
8+
*.bs
9+
10+
# Devel::Cover
11+
cover_db/
12+
13+
# Devel::NYTProf
14+
nytprof.out
15+
16+
# Dizt::Zilla
17+
/.build/
18+
19+
# Module::Build
20+
_build/
21+
Build
22+
Build.bat
23+
24+
# Module::Install
25+
inc/
26+
27+
# ExtUtils::MakeMaker
28+
/blib/
29+
/_eumm/
30+
/*.gz
31+
/Makefile
32+
/Makefile.old
33+
/MANIFEST.bak
34+
/pm_to_blib
35+
/*.zip
36+
37+
# Additionals (not necessarily Perl-related)
38+
.Rhistory
39+
.DS_Store

Misc/remove_tags.pl

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
###########################################################################
1111
###########################################################################
1212
## ##
13-
## Copyright 2021, Simon Andrews ([email protected]) ##
14-
## Steven Wingett ([email protected]) ##
15-
## Felix Krueger ([email protected]) ##
13+
## Copyright 2022, Simon Andrews (The Babraham Institute, UK) ##
14+
## Steven Wingett (MRC-LMB, Cambridge, UK) ##
15+
## Felix Krueger (The Babraham Institute UK) ##
1616
## Mark Fiers (Plant & Food Research, NZ) ##
1717
## ##
1818
## This program is free software: you can redistribute it and/or modify ##

README.txt

-2
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,3 @@ https://github.com/StevenWingett/FastQ-Screen
1818

1919
Bug reports, queries or suggestions can be made at:
2020
https://github.com/StevenWingett/FastQ-Screen/issues
21-
22-
Alternatively, please email [email protected]

RELEASE_NOTES.txt

+3-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
Release notes for FastQ Screen v0.15.0 (12 October 2021)
2-
----------------------------------------------------------
3-
Added remove_tags.pl in new Misc folder. This script
4-
removes FastQ Screen genome filter tags from read headers,
5-
which may be necessary for downstream analysis.
6-
7-
Downloading test genomes with wget now executed with
8-
--no-check-certificate parameter, to prevent downloading
9-
failures on some systems.
1+
Release notes for FastQ Screen v0.15.1 (11 January 2022)
2+
--------------------------------------------------------
3+
Updated contact details.
104

115

126

fastq_screen

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

1515

16-
our $VERSION = "0.15.0";
16+
our $VERSION = "0.15.1";
1717

1818
###########################################################################
1919
###########################################################################
2020
## ##
21-
## Copyright 2021, Simon Andrews ([email protected]) ##
22-
## Steven Wingett ([email protected]) ##
23-
## Felix Krueger ([email protected]) ##
21+
## Copyright 2022, Simon Andrews (The Babraham Institute, UK) ##
22+
## Steven Wingett (MRC-LMB, Cambridge, UK) ##
23+
## Felix Krueger (The Babraham Institute UK) ##
2424
## Mark Fiers (Plant & Food Research, NZ) ##
2525
## ##
2626
## This program is free software: you can redistribute it and/or modify ##
@@ -2489,7 +2489,6 @@ __DATA__
24892489
FastQ Screen - Map sequences against multiple genomes
24902490
24912491
www.bioinformatics.babraham.ac.uk/projects/fastq_screen
2492-
24932492
24942493
Synopsis
24952494

fastq_screen_documentation.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ Terms of use
292292
FastQ Screen is distributed under a "GNU General Public License", a copy of which is distributed with the software.
293293

294294

295-
Papers citing FastQ Screen
296-
==========================
295+
Selected Papers citing FastQ Screen
296+
===================================
297297
Picornell AC, Echavarria I, Alvarez E, et al.: Breast cancer PAM50 signature: correlation and concordance between RNA-Seq and digital multiplexed gene expression technologies in a triple negative breast cancer series. BMC Genomics. 2019; DOI: 10.1186/s12864-019-5849-0
298298

299299
Laufer BI, Hwang H, Vogel Ciernia A et al., Whole genome bisulfite sequencing of Down syndrome brain reveals regional DNA hypermethylation and novel disorder insights. Epigenetics. 2019; 14(7), 672-684; DOI:10.1080/15592294.2019.1609867
@@ -326,5 +326,3 @@ Wingett SW and Andrews S. FastQ Screen: A tool for multi-genome mapping and qual
326326
Report problems
327327
===============
328328
If you have any problems running this program you can report them on `GitHub <https://github.com/StevenWingett/FastQ-Screen/issues>`_.
329-
330-
Please email any other queries to: [email protected]

0 commit comments

Comments
 (0)