class SequenceServer::Report

Create report for the given job.

Report is a generic superclass. Programs, like BLAST, must implement their own report subclass.

Attributes

job[R]

Public Class Methods

new(job) { || ... } click to toggle source
# File lib/sequenceserver/report.rb, line 14
def initialize(job)
  @job = job
  yield if block_given?
end