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

org.opencb.opencga.test.config.Mutation 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 Mutation {

    List variants;
    private String file;
    private boolean skip;

    public Mutation() {
    }

    @Override
    public String toString() {
        return "Mutations{" +
                "variants=" + variants +
                ", file='" + file + '\'' +
                ", skip=" + skip +
                '}';
    }

    public List getVariants() {
        return variants;
    }

    public Mutation setVariants(List variants) {
        this.variants = variants;
        return this;
    }

    public String getFile() {
        return file;
    }

    public Mutation setFile(String file) {
        this.file = file;
        return this;
    }


    public boolean isSkip() {
        return skip;
    }

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






© 2015 - 2025 Weber Informatics LLC | Privacy Policy