Class DefaultExecutorInterpreter
- java.lang.Object
-
- fr.ens.biologie.genomique.eoulsan.galaxytools.executorinterpreters.AbstractExecutorInterpreter
-
- fr.ens.biologie.genomique.eoulsan.galaxytools.executorinterpreters.DefaultExecutorInterpreter
-
- All Implemented Interfaces:
ExecutorInterpreter
public class DefaultExecutorInterpreter extends AbstractExecutorInterpreter
This class define the default executor interpreter. This interpreter use/bin/sh -c
to create the command line.- Since:
- 2.0
- Author:
- Laurent Jourdren
-
-
Field Summary
Fields Modifier and Type Field Description static String
INTERPRETER_NAME
-
Constructor Summary
Constructors Constructor Description DefaultExecutorInterpreter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
createCommandLine(String arguments)
Create the command line for the the argument of the interpreter.String
getName()
Get the name of the interpreter.String
toString()
-
Methods inherited from class fr.ens.biologie.genomique.eoulsan.galaxytools.executorinterpreters.AbstractExecutorInterpreter
execute, newSimpleProcess
-
-
-
-
Field Detail
-
INTERPRETER_NAME
public static final String INTERPRETER_NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getName
public String getName()
Description copied from interface:ExecutorInterpreter
Get the name of the interpreter.- Returns:
- the name of the interpreter
-
createCommandLine
public List<String> createCommandLine(String arguments)
Description copied from interface:ExecutorInterpreter
Create the command line for the the argument of the interpreter.- Parameters:
arguments
- the interpreter arguments- Returns:
- the command line
-
-