-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbcsort_se_sj.pl
executable file
·505 lines (426 loc) · 12.3 KB
/
bcsort_se_sj.pl
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
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
#!/usr/bin/perl
use strict;
use warnings;
use Cwd 'abs_path';
#use Cwd;
use IO::Uncompress::Gunzip qw(gunzip $GunzipError) ;
use IO::Compress::Gzip qw(gzip $GzipError) ;
use File::Spec;
#use File::Path qw(make_path remove_tree);
##### ##### ##### ##### #####
use Getopt::Std;
use vars qw( $opt_a $opt_c $opt_d $opt_e $opt_f $opt_g $opt_s $opt_m $opt_v);
# Usage
my $usage = "
bcsort_se.pl - sorts barcodes from fastq.gz files.
by
Brian J. Knaus
July 2011
Copyright (c) 2010, 2011 Brian J. Knaus.
License is hereby granted for personal, academic, and non-profit use.
Commercial users should contact the author (http://brianknaus.com).
Great effort has been taken to make this software perform its said
task however, this software comes with ABSOLUTELY NO WARRANTY,
not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Usage: perl bcsort_se.pl options
required:
-a fastq.gz file.
optional:
-c barcode file name, no quotes, one barcode per line
[optional, default = barcodes.txt].
-d postfix for output directory [optional, default is null
resulting in outdir = bcsort_out].
-e output directory .
-f fastq file is gzipped [default is T].
-g filter reads [default is F].
-s output fasta file [default is T].
-m output fastq file [default is T].
-v verbose mode [optional T/F, default is F].
Version 0.1-1.
";
# command line processing.
getopts('a:c:d:e:f:g:s:m:v:');
die $usage unless ($opt_a);
if ($opt_e) {
if (! -d $opt_e){
mkdir $opt_e
}
}
my ($infa, $bcfile, $outdir, $outpath, $zip, $filter, $fa, $fq, $verb);
#my $string = "strthisislong";
#my $re = '((str))';
#$string =~ /$re/;
#if ($2) {
# print "\$1=$1, \$2=$2\n";
#}
#else {
# print '$2 absent, $1 is '.$1."\n";
#}
#if ($3) {
# print "\$3=$3\n";
#}
#exit;
$infa = $opt_a if $opt_a;
$bcfile = $opt_c ? $opt_c : "barcodes.txt";
$outdir = $opt_d ? "bcsort_out".$opt_d :"bcsort_out";
$outpath = $opt_e ? $opt_e : "";
$zip = $opt_f ? $opt_f : "T";
$filter = $opt_g ? $opt_g : "F";
$fa = $opt_s ? $opt_s : "F";
$fq = $opt_m ? $opt_m : "T";
$verb = $opt_v ? $opt_v : "F";
##### ##### ##### ##### #####
# Globals.
#my ($in, $outf, $out);
my $bclog = "00_bcsort_log.txt";
my ($in, $ina);
my $anom1;
my $anoma = "anomalous_reads1.fastq";
my ($out, $outa);
my @temp;
my (%barcodesH, %bcnames, @barcodesA);
my $bc_regex;
my @stime;
##### ##### ##### ##### #####
# Main.
# Check infile is a valid fastq.
fastqchk($infa, $zip);
# Get absolute path of infiles.
$infa = abs_path($infa);
$bcfile = abs_path($bcfile);
$outpath=~s/\/$//;
$outpath = abs_path($outpath);
# Manage file names.
$outdir = File::Spec->catfile($outpath, $outdir);
$bclog = File::Spec->catfile($outdir, $bclog);
$anoma = File::Spec->catfile($outdir, $anoma);
if($outdir !~ /\/$/){$outdir = $outdir."/";}
# Create outdir.
mkdir($outdir);
##### ##### ##### ##### #####
# Initialize log.
open($out, ">", $bclog) or die "Can't open $bclog: $!";
print $out $usage;
print $out "\n ----- ----- --*-- ----- -----\n\n";
print $out "Infile a:\t$infa\n";
print $out "Barcodes file:\t$bcfile\n";
print $out "Out directory:\t$outdir\n";
print $out "Out path:\t$outpath\n";
print $out "Print fasta:\t$fa\n";
print $out "Print fastq:\t$fq\n";
print $out "Verbose:\t$verb\n";
print $out "\n ----- ----- --*-- ----- -----\n\n";
close $out or die "$out: $!";
# Initial timestmp.
@stime = localtime(time);
timestamp($bclog, 'Process started');
##### ##### ##### ##### #####
# Input barcodes.
timestamp($bclog, 'Processing barcodes');
open($in, "<", $bcfile) or die "Can't open $bcfile: $!";
while (<$in>){
chomp;
next if $_=~/^\s*$/ ;
@temp = split("\t", $_);
$barcodesH{uc($temp[0])} = 0;
if($#temp == 0){
$bcnames{uc($temp[0])} = 'NA';
} else {
$bcnames{uc($temp[0])} = $temp[1];
}
push @barcodesA, uc($temp[0]);
}
@barcodesA = sort(@barcodesA);
#Brian must have done the double parens for a reason but it's giving me a lot of incorrect double hit warnings in the log file so I'm just using one set.
$bc_regex = join(")|(", @barcodesA)."\n";
chomp($bc_regex);
$bc_regex = "((".$bc_regex."))";
#$bc_regex = join("|", @barcodesA);
#$bc_regex = "(".$bc_regex.")";
open($out, ">>", $bclog) or die "Can't open $bclog: $!";
print $out "Barcodes:\n\n";
foreach(@barcodesA){
print $out "$_\t=>\t";
print $out $bcnames{$_}."\n";
}
print $out "\n";
print $out "Regex:\n";
print $out "$bc_regex\n";
print $out "\n ----- ----- --*-- ----- -----\n\n";
close $out or die "$out: $!";
##### ##### ##### ##### #####
# Input data and sort
# into a hash of arrays.
#
# Keys are barcodes.
# Values are arrays of samples.
timestamp($bclog, 'Reading in data');
if($zip eq 'T'){
$anoma.=".gz";
$ina = new IO::Uncompress::Gunzip $infa or die "IO::Uncompress::Gunzip failed: $GunzipError\n";
$anom1 = new IO::Compress::Gzip $anoma or die "IO::Compress::Gzip failed: $GzipError\n";
} else {
open($ina, "<", $infa) or die "Can't open $infa: $!";
open($anom1, ">", $anoma) or die "Can't open anomalous_reads1: $!";
}
my ($ida, $bca, $seqa, $prba);
my $anom_num = 0;
my $bc_num = 0;
my $ntot = 0;
my $freads = 0;
my %samps;
# Read in.
my $filterProblem="None";
my $errorcount=0;
my $filterFailCount=0;
while (<$ina>){
$ntot = $ntot + 1;
# Read a.
chomp($ida = $_);
$ida = substr $ida,1;
chomp($seqa = <$ina>);
<$ina>;
chomp($prba = <$ina>);
# Filter reads?
if ($filter eq 'T') {
@temp = split(/\s/, $ida);
if (@temp!=2){
$filterProblem=$ida;
$filterFailCount++;
}
else{
@temp = split(/:/, $temp[1]);
if($temp[1] eq 'Y'){
# Filtered read, do nothing.
$freads = $freads +1;
next;
}
}
}
if($seqa =~ /^$bc_regex/){
my $origIndex = $1;
my $origseq = $seqa;
($ida,$seqa,$prba) = debarcode($1,$ida,$seqa,$prba);
push @{$samps{$1}}, join("\t", $ida, $seqa, $prba); # Hash of arrays.
$barcodesH{$1} = $barcodesH{$1} + 1;
$bc_num = $bc_num + 1;
if ($seqa =~ /^$bc_regex/) {
#open($out, ">", $bclog) or die "Can't open $bclog: $!";
open($out, ">>", $bclog) or die "Can't open $bclog: $!"; #The line above was overwriting everything that came before it in the log since it only used one ">"
print $out "Oh oh! More than one barcode matched. This should never happen.\n";
print $out "$origIndex\t$1\t$origseq\n";
close $out or die "$out: $!";
$errorcount+=1;
}
# }
}
else {
# All other reads are anomalous.
print $anom1 "\@$ida\n";
print $anom1 "$seqa\n";
# print $anom1 "+$ida\n";
print $anom1 "+\n";
print $anom1 "$prba\n";
#
$anom_num = $anom_num + 1;
}
}
if ($errorcount > 0){
open($out, ">>", $bclog) or die "Can't open $bclog: $!"; #The line above was overwriting everything that came before it in the log
print $out "\nThere were $errorcount events of multi barcode matches that should never happen\n\n";
close $out or die "$out: $!";
}
if ($filterProblem ne "None"){
print STDERR "$filterFailCount read(s) could not be parsed for filtering\n";
print STDERR "This is an example: $filterProblem\n";
}
if($zip eq 'T'){
close $ina or die "$ina: $GunzipError\n";
close $anom1 or die "$anom1: $GzipError\n";
} else {
close $ina or die "$ina: $!";
close $anom1 or die "$anom1: $!";
}
# Report to log.
open($out, ">>", $bclog) or die "Can't open $bclog: $!";
print $out "\n";
close $out or die "$out: $!";
timestamp($bclog, 'Data read and sorted');
##### ##### ##### ##### #####
# Write data to file.
# Report to log.
timestamp($bclog, 'Writing data to file');
# fasta files.
if ($fa eq "T"){
foreach $bca (keys %samps) {
$outa = $outdir.$bca.".fasta";
if($zip eq 'T'){
$outa .= ".gz";
$out = new IO::Compress::Gzip $outa or die "IO::Compress::Gzip failed: $GzipError\n";
} else {
open($out, ">", $outa) or die "Can't open output.txt: $!";
}
foreach ( @{$samps{$bca}}){
@temp = split("\t",$_);
print $out ">$temp[0]\n";
print $out "$temp[1]\n";
}
if($zip eq 'T'){
close $out or die "$out: $GzipError\n";
} else {
close $out or die "$out: $!";
}
}
# Report to log.
timestamp($bclog, 'Fasta files written');
}
# Fastq files.
if ($fq eq "T"){
foreach $bca (keys %samps) {
$outa = $outdir.$bca.".fastq";
if($zip eq 'T'){
$outa.=".gz";
$out = new IO::Compress::Gzip $outa or die "IO::Compress::Gzip failed: $GzipError\n";
} else {
open($out, ">", $outa) or die "Can't open $outa: $!";
}
foreach ( @{$samps{$bca}}){
@temp = split("\t",$_);
print $out "\@$temp[0]\n";
print $out $temp[1], "\n";
print $out "+\n";
print $out "$temp[2]\n";
}
if($zip eq 'T'){
close $out or die "$out: $GzipError\n";
} else {
close $out or die "out: $!";
}
}
# Report to log.
timestamp($bclog, 'Fastq files written');
}
# Report to log.
timestamp($bclog, 'Data written to file');
##### ##### ##### ##### #####
# Summary.
open($out, ">>", $bclog) or die "Can't open $bclog: $!";
print $out "\nTotal reads:\t\t";
print $out $ntot / 1000000, "\tmillion";
print $out "\nBarcoded reads:\t\t";
print $out $bc_num / 1000000, "\tmillion";
print $out "\nNon-barcoded reads:\t";
print $out ($ntot - $bc_num) / 1000000, "\tmillion (total-barcoded)";
print $out "\nFiltered reads:\t\t";
print $out $freads / 1000000, "\tmillion";
print $out "\nAnomalous reads:\t";
print $out $anom_num / 1000000, "\tmillion";
print $out "\n\n";
print $out "Barcode Summary:\n\n";
foreach (@barcodesA){
print $out "$_\t=>\t".$barcodesH{$_}."\t=>\t".$bcnames{$_}."\n";
}
close $out or die "$out: $!";
##### ##### ##### ##### #####
# Finish.
open($out, ">>", $bclog) or die "Can't open $bclog: $!";
print $out "\n ----- ----- --*-- ----- -----\n\n";
print $out "Process initiated:\t";
print $out $stime[4]+1;
print $out "-$stime[3]-";
print $out $stime[5]+1900;
print $out " $stime[2]:$stime[1]:$stime[0]\n";
close $out or die "$out: $!";
# Log finish time.
timestamp($bclog, 'Process finished');
open($out, ">>", $bclog) or die "Can't open $bclog: $!";
print $out "bcsort process complete.\n\n";
close $out or die "$out: $!";
##### ##### ##### ##### #####
# Subroutines. #
##### ##### ##### ##### #####
# Check fastq file.
sub fastqchk{
my $inf = shift;
my $zip = shift;
my @temp;
my $in;
# Check that file exists.
if(-e $inf){} else {
die "Error: $inf does not exist!\n";
}
if($zip eq 'T'){
$in = new IO::Uncompress::Gunzip $inf or die "IO::Uncompress::Gunzip failed: $GunzipError\n";
} else {
open($in, "<", $inf) or die "Can't open $inf: $!";
}
chomp($temp[0] = <$in>); # First line is id.
chomp($temp[1] = <$in>); # Second line is sequence.
chomp($temp[2] = <$in>); # Third line is id.
chomp($temp[3] = <$in>); # Fourth line is quality.
# Check identifier line.
if($temp[0] !~ /^@/){
print "Unexpected file format!\n";
print "Line1: $temp[0]\n";
print "Line2: $temp[1]\n";
print "Line3: $temp[2]\n";
print "Line4: $temp[3]\n";
die "Error: Fastq file expected.\n";
}
# Check sequence.
$_ = $temp[1];
s/A//gi;
s/C//gi;
s/T//gi;
s/G//gi;
s/N//gi;
if(length($_)>0){
print "Unexpected file format!\n";
print "Line1: $temp[0]\n";
print "Line2: $temp[1]\n";
print "Line3: $temp[2]\n";
print "Line4: $temp[3]\n";
die "Invalid character in sequence: $_.\n";
}
# Check identifier line.
if($temp[2] !~ /^\+/){
print "Unexpected file format!\n";
print "Line1: $temp[0]\n";
print "Line2: $temp[1]\n";
print "Line3: $temp[2]\n";
print "Line4: $temp[3]\n";
die "Error: Fastq file expected.\n";
}
if($zip eq 'T'){
close $in or die "$in: $GunzipError\n";
} else {
close $in or die "$in: $!";
}
}
sub timestamp{
my $logf = shift;
my $msg = shift;
my $out;
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
open($out, ">>", $logf) or die "Can't open $logf: $!";
print $out $msg.":\t";
print $out $mon+1;
print $out "-".$mday."-";
print $out $year+1900;
print $out " $hour:$min:$sec\n";
print $out "\n ----- ----- --*-- ----- -----\n\n";
close $out or die "$out: $!";
}
sub debarcode{
my $bc = shift;
my $ida = shift;
my $seqa = shift;
my $prba = shift;
my $q = substr($prba, 0, length($bc));
$seqa = substr($seqa, length($bc));
$prba = substr($prba, length($bc));
$ida = $ida.$bc.':'.$q; # Not sure this is standard.
return($ida,$seqa,$prba);
}
##### ##### ##### ##### #####
# EOF.