]> git.donarmstrong.com Git - biopieces.git/blob - bp_bin/plot_phastcons_profiles
added --logscale_y switch to relevant plot_* biopieces
[biopieces.git] / bp_bin / plot_phastcons_profiles
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 # Plot chromosome distribution histogram.
25
26 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
27
28
29 use warnings;
30 use strict;
31 use Maasha::Biopieces;
32 use Maasha::Plot;
33 use Maasha::Matrix;
34 use Maasha::Filesys;
35 use Maasha::UCSC;
36
37
38 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
39
40
41 my ( $options, $in, $out, $default, $terminals, $phastcons_file, $phastcons_index,
42      $index, $fh_phastcons, $record, $scores, $AoA, $plot, $fh, $tmp_dir );
43
44 $default   = "PhastCons Profiles";
45 $terminals = "dumb,x11,aqua,post,svg";
46
47 $options = Maasha::Biopieces::parse_options(
48     [
49         { long => 'no_stream',  short => 'x', type => 'flag',   mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
50         { long => 'data_out',   short => 'o', type => 'file',   mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
51         { long => 'genome',     short => 'g', type => 'genome', mandatory => 'yes', default => undef,    allowed => undef,      disallowed => undef },
52         { long => 'mean',       short => 'm', type => 'flag',   mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
53         { long => 'median',     short => 'M', type => 'flag',   mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
54         { long => 'flank',      short => 'f', type => 'uint',   mandatory => 'no',  default => 0,        allowed => undef,      disallowed => undef },
55         { long => 'terminal',   short => 't', type => 'string', mandatory => 'no',  default => 'dumb',   allowed => $terminals, disallowed => undef },
56         { long => 'title',      short => 'T', type => 'string', mandatory => 'no',  default => $default, allowed => undef,      disallowed => undef },
57         { long => 'xlabel',     short => 'X', type => 'string', mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
58         { long => 'ylabel',     short => 'Y', type => 'string', mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
59         { long => 'logscale_y', short => 'L', type => 'flag',   mandatory => 'no',  default => undef,    allowed => undef,      disallowed => undef },
60     ]   
61 );
62
63 $in  = Maasha::Biopieces::read_stream( $options->{ "stream_in" } );
64 $out = Maasha::Biopieces::write_stream( $options->{ "stream_out" } );
65
66 $phastcons_file  = Maasha::Config::genome_phastcons( $options->{ "genome" } );
67 $phastcons_index = Maasha::Config::genome_phastcons_index( $options->{ "genome" } );
68
69 $index           = Maasha::UCSC::fixedstep_index_retrieve( $phastcons_index );
70 $fh_phastcons    = Maasha::Filesys::file_read_open( $phastcons_file );
71
72 while ( $record = Maasha::Biopieces::get_record( $in ) ) 
73 {
74     if ( $record->{ "CHR" } and $record->{ "CHR_BEG" } and $record->{ "CHR_END" } )
75     {
76         $scores = Maasha::UCSC::fixedstep_index_lookup( $index, $fh_phastcons, $record->{ "CHR" },
77                                                                                $record->{ "CHR_BEG" },
78                                                                                $record->{ "CHR_END" },
79                                                                                $options->{ "flank" } );
80
81         push @{ $AoA }, [ @{ $scores } ];
82     }
83
84     Maasha::Biopieces::put_record( $record, $out ) if not $options->{ "no_stream" };
85 }
86
87 Maasha::UCSC::phastcons_normalize( $AoA );
88
89 $AoA = [ [ Maasha::UCSC::phastcons_mean( $AoA ) ] ] if $options->{ "mean" };
90 $AoA = [ [ Maasha::UCSC::phastcons_median( $AoA ) ] ] if $options->{ "median" };
91
92 $AoA = Maasha::Matrix::matrix_flip( $AoA );
93
94 $tmp_dir = Maasha::Biopieces::get_tmpdir();
95
96 $plot = Maasha::Plot::lineplot_simple( $AoA, $options, $tmp_dir );
97
98 $fh = Maasha::Biopieces::write_stream( $options->{ "data_out" } );
99
100 print $fh "$_\n" foreach @{ $plot };
101
102 close $fh;
103
104 Maasha::Biopieces::close_stream( $in );
105 Maasha::Biopieces::close_stream( $out );
106
107
108 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
109
110
111 BEGIN
112 {
113     Maasha::Biopieces::status_set();
114 }
115
116
117 END
118 {
119     Maasha::Biopieces::status_log();
120 }
121
122
123 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
124
125
126 __END__