use of com.genericworkflownodes.knime.commandline.impl.CommandLineCTDFile in project GenericKnimeNodes by genericworkflownodes.
the class BALLCommandGenerator method generateCommands.
@Override
public List<CommandLineElement> generateCommands(INodeConfiguration nodeConfiguration, IPluginConfiguration pluginConfiguration, File workingDirectory) throws Exception {
File paramFile = writePARFile(nodeConfiguration, workingDirectory);
List<CommandLineElement> commands = new ArrayList<CommandLineElement>();
commands.add(new CommandLineFixedString(PAR_SWITCH));
commands.add(new CommandLineCTDFile(paramFile));
return commands;
}
use of com.genericworkflownodes.knime.commandline.impl.CommandLineCTDFile in project GenericKnimeNodes by genericworkflownodes.
the class OpenMSCommandGenerator method generateCommands.
@Override
public List<CommandLineElement> generateCommands(INodeConfiguration nodeConfiguration, IPluginConfiguration pluginConfiguration, File workingDirectory) throws Exception {
File iniFile = createINIFile(nodeConfiguration, workingDirectory);
List<CommandLineElement> commands = new ArrayList<CommandLineElement>();
commands.add(new CommandLineFixedString(INI_SWITCH));
commands.add(new CommandLineCTDFile(iniFile));
return commands;
}
Aggregations