Sha256: d2a9954859cb61f29c1631a2225ea7b27edeffec35d0da119ded060fa0bc079e
Contents?: true
Size: 768 Bytes
Versions: 28
Compression:
Stored size: 768 Bytes
Contents
require "seqtrim_action" ######################################################## # Author: Almudena Bocinos Rioboo # # Defines the main methods that are necessary to execute Plugin1 # Inherit: Plugin ######################################################## class ActionUnexpectedVector < SeqtrimAction def initialize(start_pos,end_pos) super(start_pos,end_pos) @cut =true end # def apply_to(seq) # # # seq.seq_fasta = seq.seq_fasta.slice(start_pos,end_pos) # $LOG.debug " Applying #{self.class} to seq #{seq.seq_name}. BEGIN: #{@start_pos} END: #{@end_pos} " # # end def apply_decoration(char) return char.on_green end end
Version data entries
28 entries across 28 versions & 1 rubygems