-
Notifications
You must be signed in to change notification settings - Fork 86
/
fastqc
executable file
·489 lines (372 loc) · 16.1 KB
/
fastqc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
#!/usr/bin/perl
use warnings;
use strict;
use FindBin qw($RealBin);
use Getopt::Long;
#####################################################################################
# Copyright Copyright 2010-17 Simon Andrews #
# #
# This file is part of FastQC. #
# #
# FastQC is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation; either version 3 of the License, or #
# (at your option) any later version. #
# #
# FastQC is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with FastQC; if not, write to the Free Software #
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #
#####################################################################################
# Check to see if they've mistakenly downloaded the source distribution
# since several people have made this mistake
if (-e "$RealBin/uk/ac/babraham/FastQC/FastQCApplication.java") {
die "This is the source distribution of FastQC. You need to get the compiled version if you want to run the program\n";
}
my $delimiter = ':';
if ($^O =~ /Win/) {
$delimiter = ';';
}
if ($ENV{CLASSPATH}) {
$ENV{CLASSPATH} .= "$delimiter$RealBin$delimiter$RealBin/htsjdk.jar$delimiter$RealBin/jbzip2-0.9.jar$delimiter$RealBin/cisd-jhdf5.jar";
}
else {
$ENV{CLASSPATH} = "$RealBin$delimiter$RealBin/htsjdk.jar$delimiter$RealBin/jbzip2-0.9.jar$delimiter$RealBin/cisd-jhdf5.jar";
}
# We need to find the java interpreter. We'll start from the assumption that this
# is included in the path.
my $java_bin = "java";
# We might have bundled a jre with the installation. If that's the case then we'll
# use the interpreter which is bundled in preference to the system one.
# Windows first
if (-e "$RealBin/jre/bin/java.exe") {
$java_bin = "$RealBin/jre/bin/java.exe";
}
# Linux
elsif (-e "$RealBin/jre/bin/java") {
$java_bin = "$RealBin/jre/bin/java";
}
# OSX
elsif (-e "$RealBin/jre/Contents/Home/bin/java") {
$java_bin = "$RealBin/jre/Contents/Home/bin/java";
}
my @java_args;
my @files;
# Add an option to make the JVM exit cleanly if it hits an out of memory error rather than
# hanging.
push @java_args, '-XX:+ExitOnOutOfMemoryError';
if ($^O =~/darwin/) {
# Add the OSX specific options to use a standard OSX menu bar
# and set the program name to something sensible.
push @java_args, '-Xdock:name=FastQC';
push @java_args, "-Xdock:icon=$RealBin/../Resources/seqmonk.icns";
push @java_args, '-Dapple.laf.useScreenMenuBar=true';
}
# We now need to scan the command line for switches which we're going
# to pass on to the main java program.
my $version;
my $help;
my $outdir;
my $unzip;
my $delete;
my $format;
my $contaminant;
my $adapter;
my $limits;
my $memory;
my $threads;
my $quiet;
my $nogroup;
my $expgroup;
my $casava;
my $nano;
my $nofilter;
my $kmer_size;
my $temp_directory;
my $min_length;
my $dup_length;
my $svg;
my $result = GetOptions('version' => \$version,
'help' => \$help,
'quiet' => \$quiet,
'svg' => \$svg,
'nogroup' => \$nogroup,
'expgroup' => \$expgroup,
'outdir=s' => \$outdir,
'extract!' => \$unzip,
'delete' => \$delete,
'format=s' => \$format,
'memory=i' => \$memory,
'threads=i' => \$threads,
'kmers=i' => \$kmer_size,
'casava' => \$casava,
'nano' => \$nano,
'nofilter' => \$nofilter,
'contaminants=s' => \$contaminant,
'adapters=s' => \$adapter,
'limits=s' => \$limits,
'dir=s' => \$temp_directory,
'java=s' => \$java_bin,
'min_length=i' => \$min_length,
'dup_length=i' => \$dup_length,
);
# Check the simple stuff first
if ($help) {
# Just print the help and exit
print while(<DATA>);
exit;
}
if ($version) {
push @java_args ,"-Dfastqc.show_version=true";
}
# Now parse any additional options
if ($outdir) {
unless(-e $outdir and -d $outdir) {
die "Specified output directory '$outdir' does not exist\n";
}
push @java_args ,"-Dfastqc.output_dir=$outdir";
}
if ($contaminant) {
unless (-e $contaminant and -r $contaminant) {
die "Contaminant file '$contaminant' did not exist, or could not be read\n";
}
push @java_args ,"-Dfastqc.contaminant_file=$contaminant";
}
if ($adapter) {
unless (-e $adapter and -r $adapter) {
die "Adapters file '$adapter' did not exist, or could not be read\n";
}
push @java_args ,"-Dfastqc.adapter_file=$adapter";
}
if ($limits) {
unless (-e $limits and -r $limits) {
die "Limits file '$limits' did not exist, or could not be read\n";
}
push @java_args ,"-Dfastqc.limits_file=$limits";
}
if ($temp_directory) {
unless (-e $temp_directory and -d $temp_directory and -w $temp_directory) {
die "Temp directory '$temp_directory' doesn't exist, or can't be written to\n";
}
push @java_args, "-Djava.io.tmpdir=$temp_directory";
}
if ($min_length) {
push @java_args ,"-Dfastqc.min_length=$min_length";
}
if ($dup_length) {
push @java_args ,"-Dfastqc.dup_length=$dup_length";
}
if ($memory) {
if ($memory < 100 || $memory > 10000) {
die "Memory value $memory MB was outside the allowed range (100 - 10000)";
}
}
else {
$memory = 512;
}
if ($threads) {
if ($threads < 1) {
die "Number of threads must be a positive integer";
}
push @java_args ,"-Dfastqc.threads=$threads";
my $used_memory = $memory * $threads;
unshift @java_args,"-Xmx${used_memory}m";
}
else {
unshift @java_args,"-Xmx${memory}m";
}
if ($kmer_size) {
unless ($kmer_size =~ /^\d+$/) {
die "Kmer size '$kmer_size' was not a number";
}
if ($kmer_size < 2 or $kmer_size > 10) {
die "Kmer size must be in the range 2-10";
}
push @java_args,"-Dfastqc.kmer_size=$kmer_size";
}
if ($quiet) {
push @java_args ,"-Dfastqc.quiet=true";
}
if ($casava) {
push @java_args ,"-Dfastqc.casava=true";
}
if ($nano) {
push @java_args ,"-Dfastqc.nano=true";
}
if ($nofilter) {
push @java_args ,"-Dfastqc.nofilter=true";
}
if ($nogroup) {
push @java_args ,"-Dfastqc.nogroup=true";
}
if ($expgroup) {
if ($nogroup) {
die "You can't specify both --expgroup and --nogroup in the same run\n";
}
push @java_args ,"-Dfastqc.expgroup=true";
}
if (defined $unzip) {
if ($unzip) {
$unzip = 'true';
}
else {
$unzip = 'false';
}
push @java_args,"-Dfastqc.unzip=$unzip";
if ($delete) {
push @java_args, "-Dfastqc.delete=true";
}
}
if ($format) {
unless ($format eq 'bam' || $format eq 'sam' || $format eq 'fastq' || $format eq 'sam_mapped' || $format eq 'bam_mapped') {
die "Unrecognised sequence format '$format', acceptable formats are bam,sam,bam_mapped,sam_mapped and fastq\n";
}
push @java_args,"-Dfastqc.sequence_format=$format";
}
if ($svg) {
push @java_args,"-Dfastqc.svg=true";
}
if ($java_bin ne 'java') {
warn "Java is $java_bin\n";
# $java_bin =~ s/\\/\//g;
unless (-e $java_bin) {
die "Couldn't find java interpreter at '$java_bin'";
}
# if ($java_bin =~ / /) {
# $java_bin = "\"$java_bin\"";
# }
}
# We've found that on systems with large numbers of CPUs, and especially on systems
# where IO contention can occur, that the program can consume large amounts of CPU
# during parallel garbage collection. Since interactive performance isn't really
# important when running non-interactively we'll limit the GC to using only a single
# thread if running with a list of filenames
if (@ARGV) {
push @java_args,"-XX:ParallelGCThreads=1";
}
foreach (@ARGV) {
if (/^\-D/) {
push @java_args,$_;
}
else {
push @files,$_;
}
}
# This is set internally as well, but on some JREs it doesn't
# pick up the internally set value properly, so we'll set it
# outside as well which should work.
if (@files or $version or $help) {
push @java_args, "-Djava.awt.headless=true";
}
#warn "Running 'exec $java_bin,@java_args, \"uk.ac.babraham.FastQC.FastQCApplication\", @files, CLASSPATH is $ENV{CLASSPATH}";
if ($java_bin ne 'java') {
system $java_bin,@java_args, "uk.ac.babraham.FastQC.FastQCApplication", @files;
}
else {
exec $java_bin,@java_args, "uk.ac.babraham.FastQC.FastQCApplication", @files;
}
__DATA__
FastQC - A high throughput sequence QC analysis tool
SYNOPSIS
fastqc seqfile1 seqfile2 .. seqfileN
fastqc [-o output dir] [--(no)extract] [-f fastq|bam|sam]
[-c contaminant file] seqfile1 .. seqfileN
DESCRIPTION
FastQC reads a set of sequence files and produces from each one a quality
control report consisting of a number of different modules, each one of
which will help to identify a different potential type of problem in your
data.
If no files to process are specified on the command line then the program
will start as an interactive graphical application. If files are provided
on the command line then the program will run with no user interaction
required. In this mode it is suitable for inclusion into a standardised
analysis pipeline.
The options for the program as as follows:
-h --help Print this help file and exit
-v --version Print the version of the program and exit
-o --outdir Create all output files in the specified output directory.
Please note that this directory must exist as the program
will not create it. If this option is not set then the
output file for each sequence file is created in the same
directory as the sequence file which was processed.
--casava Files come from raw casava output. Files in the same sample
group (differing only by the group number) will be analysed
as a set rather than individually. Sequences with the filter
flag set in the header will be excluded from the analysis.
Files must have the same names given to them by casava
(including being gzipped and ending with .gz) otherwise they
won't be grouped together correctly.
--nano Files come from nanopore sequences and are in fast5 format. In
this mode you can pass in directories to process and the program
will take in all fast5 files within those directories and produce
a single output file from the sequences found in all files.
--nofilter If running with --casava then don't remove read flagged by
casava as poor quality when performing the QC analysis.
--extract If set then the zipped output file will be uncompressed in
the same directory after it has been created. If --delete is
also specified then the zip file will be removed after the
contents are unzipped.
-j --java Provides the full path to the java binary you want to use to
launch fastqc. If not supplied then java is assumed to be in
your path.
--noextract Do not uncompress the output file after creating it. You
should set this option if you do not wish to uncompress
the output when running in non-interactive mode.
--nogroup Disable grouping of bases for reads >50bp. All reports will
show data for every base in the read. WARNING: Using this
option will cause fastqc to crash and burn if you use it on
really long reads, and your plots may end up a ridiculous size.
You have been warned!
--min_length Sets an artificial lower limit on the length of the sequence
to be shown in the report. As long as you set this to a value
greater or equal to your longest read length then this will be
the sequence length used to create your read groups. This can
be useful for making directly comaparable statistics from
datasets with somewhat variable read lengths.
--dup_length Sets a length to which the sequences will be truncated when
defining them to be duplicates, affecting the duplication and
overrepresented sequences plot. This can be useful if you have
long reads with higher levels of miscalls, or contamination with
adapter dimers containing UMI sequences.
-f --format Bypasses the normal sequence file format detection and
forces the program to use the specified format. Valid
formats are bam,sam,bam_mapped,sam_mapped and fastq
--memory Sets the base amount of memory, in Megabytes, used to process
each file. Defaults to 512MB. You may need to increase this if
you have a file with very long sequences in it.
--svg Save the graphs in the report in SVG format.
-t --threads Specifies the number of files which can be processed
simultaneously. Each thread will be allocated 512MB of
memory so you shouldn't run more threads than your
available memory will cope with, and not more than
6 threads on a 32 bit machine
-c Specifies a non-default file which contains the list of
--contaminants contaminants to screen overrepresented sequences against.
The file must contain sets of named contaminants in the
form name[tab]sequence. Lines prefixed with a hash will
be ignored.
-a Specifies a non-default file which contains the list of
--adapters adapter sequences which will be explicity searched against
the library. The file must contain sets of named adapters
in the form name[tab]sequence. Lines prefixed with a hash
will be ignored.
-l Specifies a non-default file which contains a set of criteria
--limits which will be used to determine the warn/error limits for the
various modules. This file can also be used to selectively
remove some modules from the output all together. The format
needs to mirror the default limits.txt file found in the
Configuration folder.
-k --kmers Specifies the length of Kmer to look for in the Kmer content
module. Specified Kmer length must be between 2 and 10. Default
length is 7 if not specified.
-q --quiet Suppress all progress messages on stdout and only report errors.
-d --dir Selects a directory to be used for temporary files written when
generating report images. Defaults to system temp directory if
not specified.
BUGS
Any bugs in fastqc should be reported either to simon.andrews@babraham.ac.uk
or in www.bioinformatics.babraham.ac.uk/bugzilla/