e4cf9e8b98beef650ebe35f252bfb752c2a554ec
[jalview.git] / gl.rb
1 File.open( "g.txt" ) do | file |
2   while line = file.gets
3     if line =~ /^([A-Z0-9]{3,5})/
4       puts $1 + "\t" + "/home/czmasek/DATA/SEQUENCES/GENOMES/PROTEIN_PREDICTIONS_CDHIT_095/ALL/" + $1 + ".fasta"
5     else
6       puts line
7     end
8   end
9 end