]> git.donarmstrong.com Git - biopieces.git/blob - code_ruby/lib/maasha/seq.rb
added reversing of qual to reverse
[biopieces.git] / code_ruby / lib / maasha / seq.rb
1 # Copyright (C) 2007-2011 Martin A. Hansen.
2
3 # This program is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU General Public License
5 # as published by the Free Software Foundation; either version 2
6 # of the License, or (at your option) any later version.
7
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12
13 # You should have received a copy of the GNU General Public License
14 # along with this program; if not, write to the Free Software
15 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16
17 # http://www.gnu.org/copyleft/gpl.html
18
19 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
20
21 # This software is part of the Biopieces framework (www.biopieces.org).
22
23 # >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
24
25 require 'maasha/digest'
26 require 'maasha/patternmatcher'
27 require 'maasha/bits'
28 #require 'maasha/patscan'
29
30 # Residue alphabets
31 DNA     = %w[a t c g]
32 RNA     = %w[a u c g]
33 PROTEIN = %w[f l s y c w p h q r i m t n k v a d e g]
34 INDELS  = %w[. - _ ~]
35
36 # Quality scores bases
37 SCORE_PHRED    = 33
38 SCORE_ILLUMINA = 64
39
40 # Error class for all exceptions to do with Seq.
41 class SeqError < StandardError; end
42
43 class Seq
44   #include Patscan
45   include PatternMatcher
46
47   attr_accessor :seq_name, :seq, :type, :qual
48
49   # Class method to instantiate a new Sequence object given
50   # a Biopiece record.
51   def self.new_bp(record)
52     seq_name = record[:SEQ_NAME]
53     seq      = record[:SEQ]
54     type     = record[:SEQ_TYPE]
55     qual     = record[:SCORES]
56
57     self.new(seq_name, seq, type, qual)
58   end
59
60   # Class method that generates all possible oligos of a specifed length and type.
61   def self.generate_oligos(length, type)
62     raise SeqError, "Cannot generate negative oligo length: #{length}" if length <= 0
63
64     case type.downcase
65     when /dna/     then alph = DNA
66     when /rna/     then alph = RNA
67     when /protein/ then alph = PROTEIN
68     else
69       raise SeqError, "Unknown sequence type: #{type}"
70     end
71
72     oligos = [""]
73
74     (1 .. length).each do
75       list = []
76
77       oligos.each do |oligo|
78         alph.each do |char|
79           list << oligo + char
80         end
81       end
82
83       oligos = list
84     end
85
86     oligos
87   end
88
89   # Initialize a sequence object with the following arguments:
90   # - seq_name: Name of the sequence.
91   # - seq: The sequence.
92   # - type: The sequence type - DNA, RNA, or protein
93   # - qual: An Illumina type quality scores string.
94   def initialize(seq_name = nil, seq = nil, type = nil, qual = nil)
95     @seq_name = seq_name
96     @seq      = seq
97     @type     = type
98     @qual     = qual
99   end
100
101   # Method that guesses and returns the sequence type
102   # by inspecting the first 100 residues.
103   def type_guess
104     raise SeqError, "Guess failed: sequence is nil" if self.seq.nil?
105
106     case self.seq[0 ... 100].downcase
107     when /[flpqie]/ then return "protein"
108     when /[u]/      then return "rna"
109     else                 return "dna"
110     end
111   end
112
113   # Method that guesses and sets the sequence type
114   # by inspecting the first 100 residues.
115   def type_guess!
116     self.type = self.type_guess
117   end
118
119   # Returns the length of a sequence.
120   def length
121     self.seq.nil? ? 0 : self.seq.length
122   end
123
124   alias :len :length
125
126   # Return the number indels in a sequence.
127   def indels
128     regex = Regexp.new(/[#{Regexp.escape(INDELS.join(""))}]/)
129     self.seq.scan(regex).size
130   end
131
132   # Method that returns true is a given sequence type is DNA.
133   def is_dna?
134     self.type == 'dna'
135   end
136
137   # Method that returns true is a given sequence type is RNA.
138   def is_rna?
139     self.type == 'rna'
140   end
141
142   # Method that returns true is a given sequence type is protein.
143   def is_protein?
144     self.type == 'protein'
145   end
146
147   # Method to transcribe DNA to RNA.
148   def to_rna
149     raise SeqError, "Cannot transcribe 0 length sequence" if self.length == 0
150     raise SeqError, "Cannot transcribe sequence type: #{self.type}" unless self.is_dna?
151     self.type = 'rna'
152     self.seq.tr!('Tt','Uu')
153   end
154
155   # Method to reverse-transcribe RNA to DNA.
156   def to_dna
157     raise SeqError, "Cannot reverse-transcribe 0 length sequence" if self.length == 0
158     raise SeqError, "Cannot reverse-transcribe sequence type: #{self.type}" unless self.is_rna?
159
160     self.type = 'dna'
161     self.seq.tr!('Uu','Tt')
162   end
163
164   # Method that given a Seq entry returns a Biopieces record (a hash).
165   def to_bp
166     raise SeqError, "Missing seq_name" if self.seq_name.nil?
167     raise SeqError, "Missing seq"      if self.seq.nil?
168
169     record             = {}
170     record[:SEQ_NAME] = self.seq_name
171     record[:SEQ]      = self.seq
172     record[:SEQ_LEN]  = self.length
173     record[:SCORES]   = self.qual if self.qual
174     record
175   end
176
177   # Method that given a Seq entry returns a FASTA entry (a string).
178   def to_fasta(wrap = nil)
179     raise SeqError, "Missing seq_name" if self.seq_name.nil?
180     raise SeqError, "Missing seq"      if self.seq.nil?
181
182     seq_name = self.seq_name.to_s
183     seq      = self.seq.to_s
184
185     unless wrap.nil?
186       seq.gsub!(/(.{#{wrap}})/) do |match|
187         match << $/
188       end
189
190       seq.chomp!
191     end
192
193     ">" + seq_name + $/ + seq + $/
194   end
195
196   # Method that given a Seq entry returns a FASTQ entry (a string).
197   def to_fastq
198     raise SeqError, "Missing seq_name" if self.seq_name.nil?
199     raise SeqError, "Missing seq"      if self.seq.nil?
200     raise SeqError, "Missing qual"     if self.qual.nil?
201
202     seq_name = self.seq_name.to_s
203     seq      = self.seq.to_s
204     qual     = self.qual.to_s
205
206     "@" + seq_name + $/ + seq + $/ + "+" + $/ + qual + $/
207   end
208
209   # Method that generates a unique key for a
210   # DNA sequence and return this key as a Fixnum.
211   def to_key
212     key = 0
213     
214     self.seq.upcase.each_char do |char|
215       key <<= 2
216       
217       case char
218       when 'A' then key |= 0
219       when 'C' then key |= 1
220       when 'G' then key |= 2
221       when 'T' then key |= 3
222       else raise SeqError, "Bad residue: #{char}"
223       end
224     end
225     
226     key
227   end
228
229   # Method to reverse complement sequence.
230   def reverse_complement
231     self.reverse
232     self.complement
233   end
234
235   alias :revcomp :reverse_complement
236
237   # Method to reverse the sequence.
238   def reverse
239     self.seq.reverse!
240     self.qual.reverse! if self.qual
241   end
242
243   # Method that complements sequence including ambiguity codes.
244   def complement
245     raise SeqError, "Cannot complement 0 length sequence" if self.length == 0
246
247     if self.is_dna?
248       self.seq.tr!( 'AGCUTRYWSMKHDVBNagcutrywsmkhdvbn', 'TCGAAYRWSKMDHBVNtcgaayrwskmdhbvn' )
249     elsif self.is_rna?
250       self.seq.tr!( 'AGCUTRYWSMKHDVBNagcutrywsmkhdvbn', 'UCGAAYRWSKMDHBVNucgaayrwskmdhbvn' )
251     else
252       raise SeqError, "Cannot complement sequence type: #{self.type}"
253     end
254   end
255
256   # Method to determine the Hamming Distance between
257   # two Sequence objects (case insensitive).
258   def hamming_distance(seq)
259     self.seq.upcase.hamming_distance(seq.seq.upcase)
260   end
261
262   # Method that generates a random sequence of a given length and type.
263   def generate(length, type)
264     raise SeqError, "Cannot generate sequence length < 1: #{length}" if length <= 0
265
266     case type.downcase
267     when "dna"
268       alph = DNA
269     when "rna"
270       alph = RNA
271     when "protein"
272       alph = PROTEIN
273     else
274       raise SeqError, "Unknown sequence type: #{type}"
275     end
276
277     seq_new   = Array.new(length) { alph[rand(alph.size)] }.join("")
278     self.seq  = seq_new
279     self.type = type.downcase
280     seq_new
281   end
282
283   # Method to shuffle a sequence readomly inline.
284   def shuffle!
285     self.seq = self.seq.split('').shuffle!.join
286     self
287   end
288
289   # Method that returns a subsequence of from a given start position
290   # and of a given length.
291   def subseq(start, length = self.length - start)
292     raise SeqError, "subsequence start: #{start} < 0"                                                if start  < 0
293     raise SeqError, "subsequence length: #{length} < 1"                                              if length <= 0
294     raise SeqError, "subsequence start + length > Seq.length: #{start} + #{length} > #{self.length}" if start + length > self.length
295
296     stop = start + length - 1
297
298     seq  = self.seq[start .. stop]
299     qual = self.qual[start .. stop] unless self.qual.nil?
300
301     Seq.new(self.seq_name, seq, self.type, qual)
302   end
303
304   # Method that replaces a sequence with a subsequence from a given start position
305   # and of a given length.
306   def subseq!(start, length = self.length - start)
307     raise SeqError, "subsequence start: #{start} < 0"                                                if start  < 0
308     raise SeqError, "subsequence length: #{length} < 1"                                              if length <= 0
309     raise SeqError, "subsequence start + length > Seq.length: #{start} + #{length} > #{self.length}" if start + length > self.length
310
311     stop = start + length - 1
312
313     self.seq  = self.seq[start .. stop]
314     self.qual = self.qual[start .. stop] unless self.qual.nil?
315   end
316
317   # Method that returns a subsequence of a given length
318   # beginning at a random position.
319   def subseq_rand(length)
320     if self.length - length + 1 == 0
321       start = 0
322     else
323       start = rand(self.length - length + 1)
324     end
325
326     self.subseq(start, length)
327   end
328
329   # Method that returns the residue compositions of a sequence in
330   # a hash where the key is the residue and the value is the residue
331   # count.
332   def composition
333     comp = Hash.new(0);
334
335     self.seq.upcase.each_char do |char|
336       comp[char] += 1
337     end
338
339     comp
340   end
341
342   # Method that returns the length of the longest homopolymeric stretch
343   # found in a sequence.
344   def homopol_max(min = 1)
345     return 0 if self.seq.nil? or self.seq.empty?
346
347     found = false
348
349     self.seq.upcase.scan(/A{#{min},}|T{#{min},}|G{#{min},}|C{#{min},}|N{#{min},}/) do |match|
350       found = true
351       min   = match.size > min ? match.size : min
352     end
353
354     return 0 unless found
355  
356     min
357   end
358
359   # Method that returns the percentage of hard masked residues
360   # or N's in a sequence.
361   def hard_mask
362     ((self.seq.upcase.scan("N").size.to_f / (self.len - self.indels).to_f) * 100).round(2)
363   end
364
365   # Method that returns the percentage of soft masked residues
366   # or lower cased residues in a sequence.
367   def soft_mask
368     ((self.seq.scan(/[a-z]/).size.to_f / (self.len - self.indels).to_f) * 100).round(2)
369   end
370
371   # Method to convert the quality scores from a specified base
372   # to another base.
373   def convert_phred2illumina!
374     self.qual.gsub!(/./) do |score|
375       score_phred  = score.ord - SCORE_PHRED
376       raise SeqError, "Bad Phred score: #{score} (#{score_phred})" unless (0 .. 41).include? score_phred
377       score_illumina = score_phred + SCORE_ILLUMINA
378       score          = score_illumina.chr
379     end
380   end
381
382   # Method to convert the quality scores from Solexa odd/ratio to
383   # Illumina format.
384   def convert_solexa2illumina!
385     self.qual.gsub!(/./) do |score|
386       score = solexa_char2illumina_char(score)
387     end
388   end
389
390   private
391
392   # Method to convert a Solexa score (odd ratio) to
393   # a phred (probability) integer score.
394   def solexa2phred(score)
395     (10.0 * Math.log(10.0 ** (score / 10.0) + 1.0, 10)).to_i
396   end
397
398   # Method to convert a Solexa score encoded using base
399   # 64 ASCII to a Phred score encoded using base 64 ASCII.
400   def solexa_char2illumina_char(char)
401     score_solexa = char.ord - 64
402     score_phred  = solexa2phred(score_solexa)
403     (score_phred + 64).chr
404   end
405 end
406
407 __END__