Uses of Class
compbio.metadata.Option

Packages that use Option
compbio.data.msa Web Service interfaces for JAva Bioinformatics Analysis Web Services. 
compbio.metadata A meta-data model for multiple sequence alignment web services Classes in this package have no dependencies to other sources in the project. 
 

Uses of Option in compbio.data.msa
 

Method parameters in compbio.data.msa with type arguments of type Option
 String MsaWS.customAlign(List<FastaSequence> sequences, List<Option<T>> options)
          Align a list of sequences with options.
 String Annotation.customAnalize(List<FastaSequence> sequences, List<Option<T>> options)
          Analyse the sequences according to custom settings defined in options list.
 

Uses of Option in compbio.metadata
 

Subclasses of Option in compbio.metadata
 class Parameter<T>
          A single value containing an option supported by the web service e.g.
 

Methods in compbio.metadata that return Option
 Option<T> RunnerConfig.getArgument(String name)
          Returns the argument by its name if found, NULL otherwise.
 Option<T> RunnerConfig.getArgumentByOptionName(String optionName)
          Returns the argument by option name, NULL if the argument is not found
 

Methods in compbio.metadata that return types with arguments of type Option
 List<Option<T>> RunnerConfig.getArguments()
          Returns list of Parameter and Option supported by current runner
 List<Option<T>> Preset.getArguments(RunnerConfig<T> rconfig)
          Converts list of options as String to type Option
 List<Option<T>> RunnerConfig.getOptions()
          Returns the list of the Options supported by the executable of type T
 

Methods in compbio.metadata with parameters of type Option
 void RunnerConfig.addOption(Option<T> option)
          Adds Option to the internal list of options
 

Method parameters in compbio.metadata with type arguments of type Option
 void RunnerConfig.setOptions(List<Option<T>> parameters)
          Adds the list of options or parameters to the internal list of options
 

Constructors in compbio.metadata with parameters of type Option
WrongParameterException(Option<?> option)