inprogress
[jalview.git] / forester / ruby / evoruby / lib / evo / tool / phylogenies_decorator.rb
1 #!/usr/local/bin/ruby -w
2 #
3 # = lib/evo/apps/phylogenies_decorator
4 #
5 # Copyright::  Copyright (C) 2006-2008 Christian M. Zmasek
6 # License::    GNU Lesser General Public License (LGPL)
7 #
8 # decoration of phylogenies with sequence/species names and domain architectures
9 #
10 # $Id: phylogenies_decorator.rb,v 1.34 2010/12/13 19:00:11 cmzmasek Exp $
11 #
12 # Environment variable FORESTER_HOME needs to point to the appropriate
13 # directory (e.g. setenv FORESTER_HOME $HOME/SOFTWARE_DEV/ECLIPSE_WORKSPACE/forester/)
14
15 require 'lib/evo/util/constants'
16 require 'lib/evo/util/util'
17 require 'lib/evo/util/command_line_arguments'
18
19 require 'date'
20
21 module Evoruby
22
23   class PhylogeniesDecorator
24
25     #DECORATOR_OPTIONS_SEQ_NAMES = '-r=1 -mdn'
26     #DECORATOR_OPTIONS_SEQ_NAMES = '-p -t -sn'
27     DECORATOR_OPTIONS_SEQ_NAMES = '-p -t -tc -mp -or'
28     # -mdn is a hidden expert option to rename e.g. "6_ORYLA3" to "6_[3]_ORYLA"
29     #DECORATOR_OPTIONS_SEQ_NAMES = '-sn -r=1'
30     #DECORATOR_OPTIONS_DOMAINS = '-r=1'
31     DECORATOR_OPTIONS_DOMAINS = '-p -t'
32     IDS_MAPFILE_SUFFIX        = '.nim'
33     DOMAINS_MAPFILE_SUFFIX    = '_hmmscan_10.dff'
34     SLEEP_TIME                = 0.05
35     REMOVE_NI                 = true
36     TMP_FILE_1                  = '___PD1___'
37     TMP_FILE_2                  = '___PD2___'
38     LOG_FILE                  = '00_phylogenies_decorator.log'
39     FORESTER_HOME             = ENV[Constants::FORESTER_HOME_ENV_VARIABLE]
40     JAVA_HOME                 = ENV[Constants::JAVA_HOME_ENV_VARIABLE]
41
42     PRG_NAME       = "phylogenies_decorator"
43     PRG_DATE       = "2013.11.15"
44     PRG_DESC       = "decoration of phylogenies with sequence/species names and domain architectures"
45     PRG_VERSION    = "1.02"
46     COPYRIGHT      = "2013 Christian M Zmasek"
47     CONTACT        = "phylosoft@gmail.com"
48     WWW            = "https://sites.google.com/site/cmzmasek/home/software/forester"
49
50
51     HELP_OPTION_1       = "help"
52     HELP_OPTION_2       = "h"
53
54     NL = Constants::LINE_DELIMITER
55
56     def run
57
58       Util.print_program_information( PRG_NAME,
59         PRG_VERSION,
60         PRG_DESC,
61         PRG_DATE,
62         COPYRIGHT,
63         CONTACT,
64         WWW,
65         STDOUT )
66
67       if ( ARGV == nil || ARGV.length > 3 || ARGV.length < 2  )
68         print_help
69         exit( -1 )
70       end
71
72       if FORESTER_HOME == nil || FORESTER_HOME.length < 1
73         Util.fatal_error( PRG_NAME, "apparently environment variable #{Constants::FORESTER_HOME_ENV_VARIABLE} has not been set" )
74       end
75       if JAVA_HOME == nil ||  JAVA_HOME.length < 1
76         Util.fatal_error( PRG_NAME, "apparently environment variable #{Constants::JAVA_HOME_ENV_VARIABLE} has not been set" )
77       end
78
79       if !File.exist?( FORESTER_HOME )
80         Util.fatal_error( PRG_NAME, '[' + FORESTER_HOME + '] does not exist' )
81       end
82       if !File.exist?( JAVA_HOME )
83         Util.fatal_error( PRG_NAME, '[' + JAVA_HOME + '] does not exist' )
84       end
85
86       decorator = JAVA_HOME + '/bin/java -cp ' + FORESTER_HOME + '/java/forester.jar org.forester.application.decorator'
87
88       begin
89         cla = CommandLineArguments.new( ARGV )
90       rescue ArgumentError => e
91         Util.fatal_error( PRG_NAME, "error: " + e.to_s )
92       end
93
94       if ( cla.is_option_set?( HELP_OPTION_1 ) ||
95            cla.is_option_set?( HELP_OPTION_2 ) )
96         print_help
97         exit( 0 )
98       end
99
100       if File.exist?( LOG_FILE )
101         Util.fatal_error( PRG_NAME, 'logfile [' + LOG_FILE + '] already exists' )
102       end
103
104       in_suffix = cla.get_file_name( 0 )
105       out_suffix = cla.get_file_name( 1 )
106
107       log = String.new
108
109       now = DateTime.now
110       log << "Program              : " + PRG_NAME + NL
111       log << "Version              : " + PRG_VERSION + NL
112       log << "Program date         : " + PRG_DATE + NL
113       log << "Options for seq names: " + DECORATOR_OPTIONS_SEQ_NAMES + NL
114       log << "Options for domains  : " + DECORATOR_OPTIONS_DOMAINS + NL
115       log << "FORESTER_HOME        : " + FORESTER_HOME + NL
116       log << "JAVA_HOME            : " + JAVA_HOME + NL + NL
117       log << "Date/time: " + now.to_s + NL
118       log << "Directory: " + Dir.getwd  + NL + NL
119
120       Util.print_message( PRG_NAME, 'input suffix     : ' + in_suffix )
121       Util.print_message( PRG_NAME, 'output suffix    : ' + out_suffix )
122
123       log << 'input suffix     : ' + in_suffix + NL
124       log << 'output suffix    : ' + out_suffix + NL
125
126       if ( File.exists?( TMP_FILE_1 ) )
127         File.delete( TMP_FILE_1 )
128       end
129       if ( File.exists?( TMP_FILE_2 ) )
130         File.delete( TMP_FILE_2 )
131       end
132
133       files = Dir.entries( "." )
134
135       counter = 0
136
137       files.each { | phylogeny_file |
138         if ( !File.directory?( phylogeny_file ) &&
139              phylogeny_file !~ /^\./ &&
140              phylogeny_file !~ /^00/ &&
141              phylogeny_file !~ /#{out_suffix}$/ &&
142              phylogeny_file =~ /#{in_suffix}$/ )
143           begin
144             Util.check_file_for_readability( phylogeny_file )
145           rescue ArgumentError
146             Util.fatal_error( PRG_NAME, 'can not read from: ' + phylogeny_file + ': '+ $! )
147           end
148
149           counter += 1
150
151           outfile = phylogeny_file.sub( /#{in_suffix}$/, out_suffix )
152
153           if REMOVE_NI
154             outfile = outfile.sub( /_ni_/, '_' )
155           end
156
157           if File.exists?( outfile )
158             msg = counter.to_s + ': ' + phylogeny_file + ' -> ' +  outfile +
159              ' : already exists, skipping'
160             Util.print_message( PRG_NAME, msg  )
161             log << msg + NL
162             next
163           end
164
165           Util.print_message( PRG_NAME, counter.to_s + ': ' + phylogeny_file + ' -> ' +  outfile )
166           log << counter.to_s + ': ' + phylogeny_file + ' -> ' +  outfile + NL
167
168           phylogeny_id = get_id( phylogeny_file )
169           puts
170
171           Util.print_message( PRG_NAME, "id: " + phylogeny_id )
172           log << "id: " + phylogeny_id + NL
173
174           ids_mapfile_name = nil
175           domains_mapfile_name = nil
176           seqs_file_name = nil
177
178           ids_mapfile_name = get_file( files, phylogeny_id, IDS_MAPFILE_SUFFIX )
179           domains_mapfile_name = get_file( files, phylogeny_id, DOMAINS_MAPFILE_SUFFIX )
180           seqs_file_name = get_seq_file( files, phylogeny_id )
181
182           begin
183             Util.check_file_for_readability( domains_mapfile_name )
184           rescue ArgumentError
185             Util.fatal_error( PRG_NAME, 'failed to read from [#{domains_mapfile_name}]: ' + $! )
186           end
187
188           begin
189             Util.check_file_for_readability( ids_mapfile_name )
190           rescue ArgumentError
191             Util.fatal_error( PRG_NAME, 'failed to read from [#{ids_mapfile_name}]: ' + $! )
192           end
193
194           begin
195             Util.check_file_for_readability( seqs_file_name  )
196           rescue ArgumentError
197             Util.fatal_error( PRG_NAME, 'failed to read from [#{seqs_file_name }]: ' + $! )
198           end
199
200           cmd = decorator +
201            ' -p -f=m ' + phylogeny_file + ' ' +
202            seqs_file_name  + ' ' + TMP_FILE_1
203           puts cmd
204           execute_cmd( cmd, log )
205
206           cmd = decorator + ' ' + DECORATOR_OPTIONS_DOMAINS + ' ' +
207            '-f=d ' + TMP_FILE_1 + ' ' +
208            domains_mapfile_name + ' ' +TMP_FILE_2
209           puts cmd
210           execute_cmd( cmd, log )
211
212           cmd = decorator + ' ' +  DECORATOR_OPTIONS_SEQ_NAMES + ' ' +
213            '-f=n ' + TMP_FILE_2 + ' ' +
214            ids_mapfile_name + ' ' + outfile
215           puts cmd
216           execute_cmd( cmd, log )
217
218           File.delete( TMP_FILE_1 )
219           File.delete( TMP_FILE_2 )
220
221         end
222       }
223       open( LOG_FILE, 'w' ) do | f |
224         f.write( log )
225       end
226       puts
227       Util.print_message( PRG_NAME, 'OK' )
228       puts
229     end # def run
230
231     def execute_cmd( cmd, log )
232       log << 'excuting ' + cmd + NL
233       IO.popen( cmd , 'r+' ) do | pipe |
234         pipe.close_write
235         log << pipe.read + NL + NL
236       end
237       sleep( SLEEP_TIME )
238     end
239
240
241     def get_id( phylogeny_file_name )
242       phylogeny_file_name =~ /^(.+?)__/
243       $1
244     end
245
246     def get_file( files_in_dir, phylogeny_id, suffix_pattern )
247       matching_files = Array.new
248
249       files_in_dir.each { | file |
250
251         if ( !File.directory?( file ) &&
252              file !~ /^\./ &&
253              file !~ /^00/ &&
254              file =~ /^#{phylogeny_id}#{suffix_pattern}$/ )
255           matching_files << file
256         end
257       }
258       if matching_files.length < 1
259         Util.fatal_error( PRG_NAME, 'no file matching [' + phylogeny_id +
260            + suffix_pattern + '] present in current directory' )
261       end
262       if matching_files.length > 1
263         Util.fatal_error( PRG_NAME, 'more than one file matching [' + phylogeny_id +
264            + suffix_pattern + '] present in current directory' )
265       end
266       matching_files[ 0 ]
267     end
268
269     def get_seq_file( files_in_dir, phylogeny_id )
270       matching_files = Array.new
271
272       files_in_dir.each { | file |
273
274         if ( !File.directory?( file ) &&
275              file !~ /^\./ &&
276              file !~ /^00/ &&
277              ( file =~ /^#{phylogeny_id}__.+\d$/ || file =~ /^#{phylogeny_id}__.*\.fasta$/ ) )
278           matching_files << file
279         end
280       }
281
282       if matching_files.length < 1
283         Util.fatal_error( PRG_NAME, 'no seq file matching [' + phylogeny_id + '__] present in current directory' )
284       end
285       if matching_files.length > 1
286         Util.fatal_error( PRG_NAME, 'more than one seq file matching [' + phylogeny_id + '__] present in current directory' )
287       end
288       matching_files[ 0 ]
289     end
290
291
292     def print_help()
293       puts( "Usage:" )
294       puts()
295       puts( "  " + PRG_NAME + ".rb <suffix of intrees to be decorated> <suffix for decorated outtrees> " )
296       puts()
297       puts()
298     end
299   end # class PhylogenyiesDecorator
300
301 end # module Evoruby