Uses of Interface
org.anchoranalysis.launcher.executor.selectparam.SelectParam
Packages that use SelectParam
Package
Description
Runs a particular experiment after identifying necessary paths and input files.
Different methods of selecting a object
T that is used as a parameter for an experiment.SelectParams for loading a Experiment.SelectParams for loading a
Optional<Path> for inputs, outputs or tasks.-
Uses of SelectParam in org.anchoranalysis.launcher.executor
Methods in org.anchoranalysis.launcher.executor that return SelectParamModifier and TypeMethodDescriptionExperimentExecutor.getInput()The input selection parameter.ExperimentExecutor.getOutput()The output selection parameter.ExperimentExecutor.getTask()The task selection parameter.Methods in org.anchoranalysis.launcher.executor with parameters of type SelectParamModifier and TypeMethodDescriptionvoidExperimentExecutor.setInput(SelectParam<Optional<Path>> input) The input selection parameter.voidExperimentExecutor.setOutput(SelectParam<Optional<Path>> output) The output selection parameter.voidExperimentExecutor.setTask(SelectParam<Optional<Path>> task) The task selection parameter. -
Uses of SelectParam in org.anchoranalysis.launcher.executor.selectparam
Classes in org.anchoranalysis.launcher.executor.selectparam that implement SelectParamMethods in org.anchoranalysis.launcher.executor.selectparam that return SelectParamModifier and TypeMethodDescriptionstatic SelectParam<Path> SelectParamFactory.experimentSelectParam(org.apache.commons.cli.CommandLine line, Path defaultExperiment) Creates aSelectParamfor experiment selection.static SelectParam<Optional<Path>> SelectParamFactory.inputSelectParam(org.apache.commons.cli.CommandLine line) Creates aSelectParamfor input selection.static SelectParam<Optional<Path>> SelectParamFactory.outputSelectParam(org.apache.commons.cli.CommandLine line) Creates aSelectParamfor output selection.static SelectParam<Optional<Path>> SelectParamFactory.pathOrTaskNameOrDefault(org.apache.commons.cli.CommandLine line, String optionName, Path tasksDirectory) Creates aSelectParamfor a path, task name, or default.static SelectParam<Optional<Path>> SelectParamFactory.useDefault()Creates aSelectParamthat uses the default manager. -
Uses of SelectParam in org.anchoranalysis.launcher.executor.selectparam.experiment
Methods in org.anchoranalysis.launcher.executor.selectparam.experiment that return SelectParamModifier and TypeMethodDescriptionstatic SelectParam<Path> ExperimentFactory.defaultExperimentOrCustom(org.apache.commons.cli.CommandLine line, Path defaultExperiment) Chooses either a path to the default-experiment or a path to a custom experiment. -
Uses of SelectParam in org.anchoranalysis.launcher.executor.selectparam.path
Methods in org.anchoranalysis.launcher.executor.selectparam.path that return SelectParamModifier and TypeMethodDescriptionstatic SelectParam<Optional<Path>> OutputFactory.pathOrDirectory(String[] arguments, boolean writeIntoRoot) Creates aSelectParamfor output paths or directories.static SelectParam<Optional<Path>> InputFactory.pathOrDirectoryOrGlobOrExtension(String[] arguments) Creates aSelectParamfor path, directory, glob, or file extension inputs.static SelectParam<Optional<Path>> TaskFactory.pathOrTaskName(String[] args, Path tasksDirectory) Creates aSelectParamfor a path or task name.