org.opencb.opencga.test.execution.models.DataSetExecutionCommand Maven / Gradle / Ivy
package org.opencb.opencga.test.execution.models;
public class DataSetExecutionCommand {
private String commandLine;
private String image;
public DataSetExecutionCommand() {
}
public String getCommandLine() {
return commandLine;
}
public DataSetExecutionCommand setCommandLine(String commandLine) {
this.commandLine = commandLine;
return this;
}
public String getImage() {
return image;
}
public DataSetExecutionCommand setImage(String image) {
this.image = image;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy