Class WorkerVcfStr

  • All Implemented Interfaces:
    java.util.concurrent.Callable<Result<java.lang.String>>
    Direct Known Subclasses:
    WorkerEff

    public class WorkerVcfStr
    extends Worker<VcfEntry,​java.lang.String>
    A trivial calculation on a VCF that returns a String
    Author:
    pablocingolani
    • Constructor Summary

      Constructors 
      Constructor Description
      WorkerVcfStr()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String calculate​(VcfEntry vcfEntry)
      Perform main calculation You must override this method to perform whatever calculation you want to implement
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • WorkerVcfStr

        public WorkerVcfStr()
    • Method Detail

      • calculate

        public java.lang.String calculate​(VcfEntry vcfEntry)
        Description copied from class: Worker
        Perform main calculation You must override this method to perform whatever calculation you want to implement
        Overrides:
        calculate in class Worker<VcfEntry,​java.lang.String>