Sha256: 875178990d142f8d845220e293265b616c7e21f5109aba5cefc0a4a798d17259
Contents?: true
Size: 788 Bytes
Versions: 9
Compression:
Stored size: 788 Bytes
Contents
require "seqtrim_action" ######################################################## # Author: Almudena Bocinos Rioboo # # Defines the main methods that are necessary to execute Plugin1 # Inherit: Plugin ######################################################## class ActionSangerRightAdapter < 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} . BEGIN: #{@start_pos} END: #{@end_pos} " # # end def apply_decoration(char) return char.magenta.negative # return char.magenta.negative end end
Version data entries
9 entries across 9 versions & 1 rubygems