-
Notifications
You must be signed in to change notification settings - Fork 7
/
merge-ends.pl
executable file
·183 lines (133 loc) · 4.62 KB
/
merge-ends.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
#!/usr/bin/perl
#
# INGLÊS/ENGLISH
# This program 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.
# http://www.gnu.org/copyleft/gpl.html
#
#
# PORTUGUÊS/PORTUGUESE
# Este programa é distribuído na expectativa de ser útil aos seus
# usuários, porém NÃO TEM NENHUMA GARANTIA, EXPLÍCITAS OU IMPLÍCITAS,
# COMERCIAIS OU DE ATENDIMENTO A UMA DETERMINADA FINALIDADE. Consulte
# a Licença Pública Geral GNU para maiores detalhes.
# http://www.gnu.org/copyleft/gpl.html
#
# Copyright (C) 2010 Fundação Hemocentro de Ribeirão Preto
#
# Laboratório de Genética Molecular e Bioinformática
# Núcleo de Bioinformática
# BiT - Bioinformatics Team
# Fundação Hemocentro de Ribeirão Preto
# Rua Tenente Catão Roxo, 2501
# Ribeirão Preto - São Paulo
# Brasil
# CEP 14051-140
# Fone: 55 16 39639300 Ramal 9603
#
# Daniel Guariz Pinheiro
# http://lgmb.fmrp.usp.br
#
# $Id$
=head1 NAME
merge-ends.pl - Merge sequence "ends" from paired-end experiments creating an structured file.
=head1 SYNOPSIS
# Merge two files from a paired-end experiment: PEExp_1.fastq and PEExp_2.fastq. The
# data were merged using this separator "|" : P1_seqid|P2_seqid|sequence|P1_qualid|P2_qualid|qual
$ merge-ends.pl -i1 PEExp_1.fastq -i2 PEExp_2.fastq \
> -o PEExp_12.txt -s "|"
=head1 ABSTRACT
=head1 DESCRIPTION
Merge two files from a paired-end experiment into an structured file using
an specific separator (<sep>):
P1_seqid<sep>P2_seqid<sep>sequence<sep>P1_qualid<sep>P2_qualid<sep>qual.
=head1 AUTHOR
Daniel Guariz Pinheiro E<lt>[email protected]<gt>
Copyright (c) 2010 Regional Blood Center of Ribeirão Preto
=head1 LICENSE
GNU General Public License
http://www.gnu.org/copyleft/gpl.html
=cut
use strict;
use warnings;
use Getopt::Long;
my ($infile1, $infile2, $outfile, $sep);
Usage("Too few arguments") if $#ARGV < 0;
GetOptions( "h|?|help" => sub { &Usage(); },
"i1|inputfile1=s"=> \$infile1,
"i2|inputfile2=s"=> \$infile2,
"o|outputfile=s"=> \$outfile,
"s|separator=s"=> \$sep
) or &Usage();
$sep||="\t";
die "Missing input file 1" unless ($infile1);
die "Wrong input file 1" unless (-e $infile1);
die "Missing input file 2" unless ($infile2);
die "Wrong input file 2" unless (-e $infile2);
die "Missing output file" unless ($outfile);
open(ONEIN, "<", $infile1) or die "Cannot open input file 1: $!";
open(TWOIN, "<", $infile2) or die "Cannot open input file 2: $!";
open(OUT, ">", $outfile) or die "Cannot open output file: $!";
my $count = 0;
$| = 1;
my $length;
while(my $one_seqid = <ONEIN>) {
my $one_seq = <ONEIN>;
my $one_qualid = <ONEIN>;
my $one_qual = <ONEIN>;
my $two_seqid = <TWOIN>;
my $two_seq = <TWOIN>;
my $two_qualid = <TWOIN>;
my $two_qual = <TWOIN>;
$length||=length($one_seq);
if ((length($one_seq) != $length)||(length($two_seq) != $length)) {
die "Error: a sequence in P1/P2 has different lengths";
}
chomp($one_seqid);
chomp($one_seq);
chomp($one_qualid);
chomp($one_qual);
chomp($two_seqid);
chomp($two_seq);
chomp($two_qualid);
chomp($two_qual);
print OUT $one_seqid.$sep.$two_seqid.
$sep.
$one_seq.$two_seq.
$sep.
$one_qualid.$sep.$two_qualid.
$sep.
$one_qual.$two_qual,"\n";
$count++;
if ($count % 10000 == 0) {
print STDERR "Records: $count \r";
}
}
print STDERR "Records: $count \n";
close(ONEIN);
close(TWOIN);
close(OUT);
# Subroutines
sub Usage {
my ($msg) = @_;
my $USAGE = <<"END_USAGE";
Daniel Guariz Pinheiro (dgpinheiro\@gmail.com)
(c)2010 Regional Blood Center of Ribeirão Preto
Usage
$0 [-h/--help] [-i1 PEExp_1.fastq -i2 PEExp_2.fastq
-o PEExp_12.txt ] [-s "|"]
Argument(s)
-h --help Help
-i1 --inputfile1 Input file 1 (Ordered fastq p1 file - same order as p2)
-i2 --inputfile2 Input file 2 (Ordered fastq p2 file - same order as p1)
-o --outputfile Output file
-s --separator Separator (default: TAB)
END_USAGE
print STDERR "\nERR: $msg\n\n" if $msg;
print STDERR qq[$0 ] . q[$Revision$] . qq[\n];
print STDERR $USAGE;
exit(1);
}