
org.broadinstitute.hellbender.utils.help.GATKGSONWorkUnit Maven / Gradle / Ivy
The newest version!
package org.broadinstitute.hellbender.utils.help;
import org.broadinstitute.barclay.help.DocWorkUnit;
import org.broadinstitute.barclay.help.GSONWorkUnit;
/**
* Class representing a GSONWorkUnit for GATK work units.
*
* Adds "walkertype" to the base gson object created by Barclay.
*/
public class GATKGSONWorkUnit extends GSONWorkUnit {
private String walkerType;
public GATKGSONWorkUnit(DocWorkUnit workUnit) { super(workUnit); }
public void setWalkerType(final String walkerType){
this.walkerType = walkerType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy