Skip to content

Commit

Permalink
Removed parameters that are not used as job parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
jorizci committed Feb 24, 2017
1 parent 6da3369 commit ebc5194
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,6 @@ public class InputParameters {
@Value(PARAMETER + JobParametersNames.INPUT_VCF_AGGREGATION_MAPPING_PATH + OR_NULL)
private String aggregatedMappingFile;

// maybe the next three could go into a ConfigurationParameters?

@Value(PARAMETER + JobParametersNames.APP_OPENCGA_PATH + END)
private String opencgaAppHome;

@Value(PARAMETER + JobParametersNames.CONFIG_RESTARTABILITY_ALLOW + "']?:false}")
private boolean allowStartIfComplete;

@Value(PARAMETER + JobParametersNames.CONFIG_CHUNK_SIZE + "']?:1000}")
private int chunkSize;

Expand Down Expand Up @@ -94,14 +86,6 @@ public VariantStudy.StudyType getStudyType() {
return studyType;
}

public String getOpencgaAppHome() {
return opencgaAppHome;
}

public boolean isAllowStartIfComplete() {
return allowStartIfComplete;
}

public int getChunkSize() {
return chunkSize;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@
*/
package uk.ac.ebi.eva.pipeline.parameters;

import org.opencb.datastore.core.ObjectMap;
import org.opencb.opencga.lib.common.Config;
import org.opencb.opencga.storage.core.variant.VariantStorageManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Value;
Expand Down

0 comments on commit ebc5194

Please sign in to comment.