]> git.donarmstrong.com Git - biopieces.git/blob - bp_bin/bowtie_seq
misc changes
[biopieces.git] / bp_bin / bowtie_seq
1 #!/usr/bin/env perl
2
3 # Copyright (C) 2007-2009 Martin A. Hansen.
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18
19 # http://www.gnu.org/copyleft/gpl.html
20
21
22 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> DESCRIPTION <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
23
24 # Use bowtie to map sequences in the stream against a specified genome or index.
25
26 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
27
28
29 use warnings;
30 use strict;
31 use Data::Dumper;
32 use Maasha::Biopieces;
33 use Maasha::Common;
34 use Maasha::Fastq;
35 use Maasha::Fasta;
36 use Maasha::Calc;
37
38
39 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
40
41
42 my ( $options, $in, $out, $index, $tmp_dir, $tmp_in, $tmp_out, $fh_in, $fh_out, $record, $entry, $line, @fields, $type, @args, $arg );
43
44 $options = Maasha::Biopieces::parse_options(
45     [
46         { long => 'genome',      short => 'g', type => 'genome', mandatory => 'no', default => undef, allowed => undef,     disallowed => undef },
47         { long => 'index_name',  short => 'i', type => 'string', mandatory => 'no', default => undef, allowed => undef,     disallowed => undef },
48         { long => 'mismatches',  short => 'm', type => 'uint',   mandatory => 'no', default => 0,     allowed => "0,1,2,3", disallowed => undef },
49         { long => 'max_hits',    short => 'h', type => 'uint',   mandatory => 'no', default => undef, allowed => undef,     disallowed => 0     },
50         { long => 'seed_length', short => 's', type => 'uint',   mandatory => 'no', default => 28,    allowed => undef,     disallowed => 0     },
51         { long => 'cpus',        short => 'c', type => 'uint',   mandatory => 'no', default => 1,     allowed => undef,     disallowed => 0     },
52     ]   
53 );
54
55 Maasha::Common::error( qq(both --index_name and --genome specified) ) if     $options->{ "genome" } and     $options->{ "index_name" };
56 Maasha::Common::error( qq(no --index_name or --genome specified) )    if not $options->{ "genome" } and not $options->{ "index_name" };
57
58 $in  = Maasha::Biopieces::read_stream( $options->{ "stream_in" } );
59 $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } );
60
61 if ( defined $options->{ 'genome' } ) {
62     $index = "$ENV{ 'BP_DATA' }/genomes/$options->{ 'genome' }/bowtie/$options->{ 'genome' }";
63 } elsif (defined $options->{ 'index_name' } ) {
64     $index = $options->{ 'index_name' };
65 }
66
67 $tmp_dir = Maasha::Biopieces::get_tmpdir();
68 $tmp_in  = "$tmp_dir/bowtie.seq";
69 $tmp_out = "$tmp_dir/bowtie.out";
70
71 $fh_out = Maasha::Filesys::file_write_open( $tmp_in );
72
73 while ( $record = Maasha::Biopieces::get_record( $in ) ) 
74 {
75     if ( $entry = Maasha::Fastq::biopiece2fastq( $record ) )
76     {
77         Maasha::Common::error( "Mixed FASTA and FASTQ entries in stream" ) if defined $type and $type ne "FASTQ";
78         Maasha::Fastq::put_entry( $entry, $fh_out );
79
80         $type = "FASTQ";
81     }
82     elsif ( $entry = Maasha::Fasta::biopiece2fasta( $record ) )
83     {
84         Maasha::Common::error( "Mixed FASTA and FASTQ entries in stream" ) if defined $type and $type ne "FASTA";
85         Maasha::Fasta::put_entry( $entry, $fh_out );
86
87         $type = "FASTA";
88     }
89
90     Maasha::Biopieces::put_record( $record, $out );
91 }
92
93 close $fh_out;
94
95 push @args, "-n $options->{ 'mismatches' }";
96 push @args, "-v $options->{ 'mismatches' }";  # DANGER: using seed mismatches as alignment mismatches - may work, may not!
97 push @args, "-f" if $type eq "FASTA";
98 push @args, "-p $options->{ 'cpus' }";
99
100 if ( defined $options->{ 'max_hits' } ) {
101     push @args, "-k $options->{ 'max_hits' }";
102 } else {
103     push @args, "-a";
104 }
105
106 $arg = join " ", @args;
107
108 if ( $options->{ 'verbose' } )
109 {
110     print STDERR qq(Running: bowtie $arg $index $tmp_in $tmp_out\n);
111     Maasha::Common::run( "bowtie", "$arg $index $tmp_in $tmp_out" );
112 }
113 else
114 {
115     Maasha::Common::run( "bowtie", "$arg $index $tmp_in $tmp_out > /dev/null 2>&1" );
116 }
117
118 unlink $tmp_in;
119
120 $fh_in = Maasha::Filesys::file_read_open( $tmp_out );
121
122 while ( $line = <$fh_in> )
123 {
124     chomp $line;
125
126     @fields = split /\t/, $line;
127     $record = bowtie2biopiece( \@fields );
128
129     Maasha::Biopieces::put_record( $record, $out );
130 }
131
132 close $fh_out;
133
134 unlink $tmp_out;
135
136 Maasha::Biopieces::close_stream( $in );
137 Maasha::Biopieces::close_stream( $out );
138
139
140 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> SUBROUTINES <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
141
142
143 sub bowtie2biopiece
144 {
145     # Martin A. Hansen, July 2009
146
147     # Convert a bowtie entry to a Biopiece record.
148
149     my ( $entry,   # bowtie entry
150        ) = @_;
151
152     # Returns a hash.
153
154     my ( $record, $s_id, $s_len, $hits );
155
156     $record->{ 'Q_ID' }       = $entry->[ 0 ];
157     $record->{ 'STRAND' }     = $entry->[ 1 ];
158     $record->{ 'S_ID' }       = $entry->[ 2 ];
159     $record->{ 'S_BEG' }      = $entry->[ 3 ];
160     $record->{ 'SEQ' }        = $entry->[ 4 ];
161     $record->{ 'SCORES' }     = $entry->[ 5 ];
162     $record->{ 'SCORE' }      = $entry->[ 6 ] + 1;
163     $record->{ 'ALIGN' }      = $entry->[ 7 ] || '.';
164     $record->{ 'S_LEN' }      = length $entry->[ 4 ];
165     $record->{ 'SEQ_LEN' }    = length $entry->[ 4 ];
166     $record->{ 'S_END' }      = $record->{ 'S_BEG' } + $record->{ 'SEQ_LEN' } - 1;
167     $record->{ 'SCORES' }     =~ s/(.)/ord( $1 ) - 33 . ";"/ge; # http://maq.sourceforge.net/fastq.shtml
168     $record->{ 'SCORE_MEAN' } = sprintf( "%.2f", Maasha::Calc::mean( [ split /;/, $record->{ 'SCORES' } ] ) );
169
170     $record->{ 'HITS' }       = '.';
171     $record->{ 'REC_TYPE' } = "BOWTIE";
172
173     return wantarray ? %{ $record } : $record; 
174 }
175
176
177 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
178
179
180 BEGIN
181 {
182     Maasha::Biopieces::status_set();
183 }
184
185
186 END
187 {
188     Maasha::Biopieces::status_log();
189 }
190
191
192 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
193
194
195 __END__