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

org.opencb.opencga.test.config.Mutator Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package org.opencb.opencga.test.config;

import java.util.List;

public class Mutator {

    private List mutations;
    private boolean skip;

    public Mutator() {
    }

    @Override
    public String toString() {
        return "Mutator{" +
                "mutations=" + mutations +
                ", skip=" + skip +
                '}';
    }

    public boolean isSkip() {
        return skip;
    }

    public Mutator setSkip(boolean skip) {
        this.skip = skip;
        return this;
    }

    public List getMutations() {
        return mutations;
    }

    public Mutator setMutations(List mutations) {
        this.mutations = mutations;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy