Method: Bio::SiRNA::Pair#report

Defined in:
lib/bio/util/sirna.rb

#reportObject

human readable report



163
164
165
166
167
168
169
170
171
172
# File 'lib/bio/util/sirna.rb', line 163

def report
  report =  "### siRNA\n"
  report << 'Start: ' + @start.to_s + "\n"
  report << 'Stop:  ' + @stop.to_s  + "\n"
  report << 'Rule:  ' + @rule.to_s  + "\n"
  report << 'GC %:  ' + @gc_percent.to_s  + "\n"
  report << 'Target:    '        + @target.upcase + "\n"
  report << 'Sense:     ' + '  ' + @sense.upcase  + "\n"
  report << 'Antisense: '        + @antisense.reverse.upcase + "\n"
end