Class: PluginAbAdapters

Inherits:
Plugin
  • Object
show all
Defined in:
lib/seqtrimnext/plugins/plugin_ab_adapters.rb

Overview

Author: Almudena Bocinos Rioboo

Defines the main methods that are necessary to execute PluginAdapters

Inherit: Plugin

Constant Summary collapse

MIN_ADAPTER_SIZE =

adapters found at end of sequence are even 2 nt wide, cut in 5 because of statistics

5
MIN_FAR_ADAPTER_SIZE =
13
MIN_LEFT_ADAPTER_SIZE =
9

Instance Attribute Summary

Attributes inherited from Plugin

#stats

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Plugin

#add_plugin_stats, #add_stats, #add_text_stats, auto_setup, #can_execute?, check_param, #execute, graph_ignored?, ignored_graphs, #initialize, #merge_hits, #overlapX?, plot_setup

Constructor Details

This class inherits a constructor from Plugin

Class Method Details

.check_params(params) ⇒ Object

Returns an array with the errors due to parameters are missing



180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 180

def self.check_params(params)
  errors=[]  
  
  comment='Blast E-value used as cut-off when searching for 454 AB adapters'
  # default_value = 1e-6
default_value = 1
params.check_param(errors,'blast_evalue_ab','Float',default_value,comment)

comment='Minimum required identity (%) for a reliable 454 AB adapter'
default_value = 95
params.check_param(errors,'blast_percent_ab','Integer',default_value,comment)

  comment='454 AB adapters can be found only at the read end (not within it). The following variable indicates the number of nucleotides that are allowed for considering the AB adapters to be located at the end'
default_value = 9
params.check_param(errors,'max_ab_to_end','Integer',default_value,comment)
  
  comment='Path for 454 AB adapters database'
default_value = File.join($FORMATTED_DB_PATH,'adapters_ab.fasta')
params.check_param(errors,'adapters_ab_db','DB',default_value,comment)
  
  return errors
end

.get_graph_filename(plugin_name, stats_name) ⇒ Object



212
213
214
215
216
217
218
219
220
221
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 212

def self.get_graph_filename(plugin_name,stats_name)
  return stats_name
  
  # case stats_name
  # when 'adapter_type'
  #   'AB adapters by type'
  # when 'adapter_size'
  #   'AB adapters by size'
  # end
end

.get_graph_title(plugin_name, stats_name) ⇒ Object



203
204
205
206
207
208
209
210
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 203

def self.get_graph_title(plugin_name,stats_name)
  case stats_name
  when 'adapter_type'
    'AB adapters by type'
  when 'adapter_size'
    'AB adapters by size'
  end
end

.valid_graphsObject



223
224
225
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 223

def self.valid_graphs
  return ['adapter_type']
end

Instance Method Details

#do_blasts(seqs) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 17

def do_blasts(seqs)
   
   # find MIDS  with less results than max_target_seqs value 
   blast=BatchBlast.new("-db #{@params.get_param('adapters_ab_db')}",'blastn'," -task blastn-short -perc_identity #{@params.get_param('blast_percent_ab')} -word_size #{MIN_ADAPTER_SIZE}")  

   # con culling limit hay situaciones en las que un hit largo con 1 mismatch es ignorado porque hay otro más corto que no tiene ningun error, no es aceptable.
   #blast=BatchBlast.new("-db #{@params.get_param('adapters_ab_db')}",'blastn'," -task blastn-short -perc_identity #{@params.get_param('blast_percent_ab')} -word_size #{MIN_ADAPTER_SIZE} -culling_limit=1")  
   $LOG.debug('BLAST:'+blast.get_blast_cmd)

   fastas=[]
   
   seqs.each do |seq|
    fastas.push ">"+seq.seq_name
    fastas.push seq.seq_fasta
   end
   
   # fastas=fastas.join("\n")
   
   #blast_table_results = blast.do_blast(fastas)
   #blast_table_results = BlastTableResult.new(blast_table_results)

   
   t1=Time.now
   blast_table_results = blast.do_blast(fastas,:table,false)
   add_plugin_stats('execution_time','blast',Time.now-t1)

   
   #f=File.new("/tmp/salida_#{fastas.first.gsub('>','').gsub('/','_')}.blast",'w+')
   #f.puts blast.get_blast_cmd
   #f.puts blast_table_results
   #f.close

   t1=Time.now
   blast_table_results = BlastTableResult.new(blast_table_results)
   add_plugin_stats('execution_time','parse',Time.now-t1)


   # t1=Time.now
   # blast_table_results = blast.do_blast(fastas,:xml,false)
   # add_plugin_stats('execution_time','blast',Time.now-t1)

   # t1=Time.now
   # blast_table_results = BlastStreamxmlResult.new(blast_table_results)
   # add_plugin_stats('execution_time','parse',Time.now-t1)
   
   # puts blast_table_results.inspect
  
   return blast_table_results
end

#exec_seq(seq, blast_query) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 80

def exec_seq(seq,blast_query)
 if blast_query.query_id != seq.seq_name
   raise "Blast and seq names does not match, blast:#{blast_query.query_id} sn:#{seq.seq_name}"
 end
 
  $LOG.debug "[#{self.class.to_s}, seq: #{seq.seq_name}]: looking for adapters into the sequence" 

      
  # blast=BatchBlast.new("-db #{File.join($FORMATTED_DB_PATH,'adapters_ab.fasta')}",'blastn'," -task blastn-short -evalue #{@params.get_param('blast_evalue_ab')} -perc_identity #{@params.get_param('blast_percent_ab')} -word_size #{MIN_ADAPTER_SIZE}")  
  
  
  
  # blast with only one sequence, no with many sequences from a database
  #---------------------------------------------------------------------
  
  # blast_table_results = blast.do_blast(seq.seq_fasta)             #rise seq to adapterss  executing over blast
  
   #BlastTableResult.new(res)
   # puts blast_query.inspect
   # puts blast_table_results.inspect
   
   filter_hits(blast_query.hits, seq.seq_fasta.length)
  
  adapters=[]
  # blast_table_results.querys.each do |query|     # first round to save adapters without overlap
    merge_hits(blast_query.hits,adapters)
  # end

  begin 
    adapters2=adapters                            # second round to save adapters without overlap
    adapters = []
    merge_hits(adapters2,adapters)
  end until (adapters2.count == adapters.count)

  # puts "MERGED"
  # puts "="*50
  # adapters.each {|a| puts a.inspect}
  
  max_to_end=@params.get_param('max_ab_to_end').to_i
  # type = 'ActionAbAdapter'
  actions=[]   
  adapter_size=0 
  
  #@stats['adapter_size']={}
  adapters.each do |c|                           # adds the correspondent action to the sequence 
    # puts "is the adapter near to the end of sequence ? #{c.q_end+seq.insert_start+max_to_end} >= ? #{seq.seq_fasta_orig.size-1}"   
      adapter_size=c.q_end-c.q_beg+1
      #if ((c.q_end+seq.insert_start+max_to_end)>=seq.seq_fasta_orig.size-1)  
      right_action = true
      #if ab adapter is very near to the end of original sequence
     if c.q_end>=seq.seq_fasta.length-max_to_end
        message = c.subject_id 
        type = 'ActionAbAdapter'
        ignore=false 
        add_stats('adapter_type','normal') 
      
      elsif (c.q_beg <= 4) && (adapter_size>=MIN_LEFT_ADAPTER_SIZE) #left adapter
        message = c.subject_id    
        type = 'ActionAbLeftAdapter'
        ignore = false
        right_action = false
        add_stats('adapter_type','left') 
      elsif (adapter_size>=MIN_FAR_ADAPTER_SIZE)
        message = c.subject_id    
        type = 'ActionAbFarAdapter'
        ignore = false
        add_stats('adapter_type','far') 
      else
        ignore=true 
      end 
      
      if !ignore
        a = seq.new_action(c.q_beg,c.q_end,type) 
        a.message = message 
        a.reversed = c.reversed 
        if right_action
          a.right_action = true    #mark as rigth action to get the left insert
        else
          a.left_action = true
        end
        actions.push a  
      
        # puts "adapter_size #{adapter_size}"

        #@stats[:adapter_size]={adapter_size => 1} 
        add_stats('adapter_size',adapter_size) 
        add_stats('adapter_id',message)
      end 
  end 
  
  if !actions.empty?
    seq.add_actions(actions)   
    add_stats('sequences_with_adapter','count')
  end
  
  
  #    
end

#filter_hits(hits, end_pos) ⇒ Object

filter hits that are far the extreme and do not have a valid length



68
69
70
71
72
73
74
75
76
77
78
# File 'lib/seqtrimnext/plugins/plugin_ab_adapters.rb', line 68

def filter_hits(hits,end_pos)
  hits.reverse_each do |hit|
   if (hit.q_end < (end_pos-40)) && ((hit.q_end-hit.q_beg+1)<(@params.get_ab_adapter(hit.subject_id).length*0.80).to_i)
     hits.delete(hit)
   #   puts "DELETE #{hit.inspect}"
   # else
   #   puts "ACCEPTED #{hit.inspect}, >= #{(@params.get_ab_adapter(hit.subject_id).length*0.2).to_i}"
   end
  end
  
end