All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadinstitute.hellbender.utils.help.GATKGSONWorkUnit Maven / Gradle / Ivy

There is a newer version: 4.6.0.0
Show newest version
package org.broadinstitute.hellbender.utils.help;

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 void setWalkerType(final String walkerType){
        this.walkerType = walkerType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy