use of com.genericworkflownodes.knime.parameter.StringChoiceParameter in project GenericKnimeNodes by genericworkflownodes.
the class GalaxyNodeConfigurationReaderTest method testReader.
@Test
public void testReader() throws Exception {
INodeConfiguration config = null;
GalaxyNodeConfigurationReader reader = new GalaxyNodeConfigurationReader();
config = reader.read(TestDataSource.class.getResourceAsStream("emboss_water.xml"));
assertEquals("Smith-Waterman local alignment", config.getDescription());
assertEquals("water", config.getName());
assertEquals("5.0.0", config.getVersion());
assertEquals("help text", config.getManual());
assertEquals(2, config.getNumberOfInputPorts());
assertEquals(1, config.getNumberOfOutputPorts());
assertNotNull(config.getParameter("gapopen"));
assertNotNull(config.getParameter("gapextend"));
Parameter<?> p1 = config.getParameter("gapopen");
Parameter<?> p2 = config.getParameter("gapextend");
StringChoiceParameter p3 = (StringChoiceParameter) config.getParameter("menu");
assertTrue(p1 instanceof StringParameter);
assertTrue(p2 instanceof DoubleParameter);
assertTrue(p3 instanceof StringChoiceParameter);
assertEquals(p1.getValue(), "10.0");
assertEquals(p2.getValue(), 0.5);
assertEquals("1", p3.getValue());
assertEquals("A", p3.getLabels().get(0));
assertEquals("B", p3.getLabels().get(1));
assertEquals("C", p3.getLabels().get(2));
}
use of com.genericworkflownodes.knime.parameter.StringChoiceParameter in project GenericKnimeNodes by genericworkflownodes.
the class CTDHandlerTest method testParamHandler.
@Test
public void testParamHandler() throws ParserConfigurationException, SAXException, IOException {
SchemaFactory schemaFactory = SchemaFactory.newInstance(XMLConstants.W3C_XML_SCHEMA_NS_URI);
Schema ctdSchema = schemaFactory.newSchema(SchemaProvider.class.getResource("CTD.xsd"));
SAXParserFactory spfac = SAXParserFactory.newInstance();
spfac.setValidating(false);
spfac.setSchema(ctdSchema);
// Now use the parser factory to create a SAXParser object
SAXParser sp = spfac.newSAXParser();
CTDHandler handler = new CTDHandler(sp.getXMLReader());
sp.parse(TestDataSource.class.getResourceAsStream("FileFilter.ctd"), handler);
INodeConfiguration config = handler.getNodeConfiguration();
StringParameter mz = (StringParameter) config.getParameter("FileFilter.1.mz");
assertEquals("m/z range to extract (applies to ALL ms levels!)", mz.getDescription());
assertEquals(":", mz.getValue());
assertEquals("mz", mz.getKey());
IntegerListParameter levels = (IntegerListParameter) config.getParameter("FileFilter.1.peak_options.level");
assertEquals("MS levels to extract", levels.getDescription());
assertEquals(3, levels.getValue().size());
assertEquals(1, levels.getValue().get(0).intValue());
assertEquals(2, levels.getValue().get(1).intValue());
assertEquals(3, levels.getValue().get(2).intValue());
assertEquals(false, levels.isAdvanced());
StringChoiceParameter int_precision = (StringChoiceParameter) config.getParameter("FileFilter.1.peak_options.int_precision");
assertEquals("32", int_precision.getValue());
assertEquals(3, int_precision.getAllowedValues().size());
BoolParameter no_progress = (BoolParameter) config.getParameter("FileFilter.1.no_progress");
assertEquals(false, no_progress.getValue());
assertEquals(true, no_progress.isAdvanced());
assertEquals(3, config.getInputPorts().size());
assertEquals("FileFilter.1.in", config.getInputPorts().get(0).getName());
}
use of com.genericworkflownodes.knime.parameter.StringChoiceParameter in project GenericKnimeNodes by genericworkflownodes.
the class CTDConfigurationWriterTest method testWrite.
@Test
public void testWrite() throws Exception {
CTDConfigurationReader reader = new CTDConfigurationReader();
INodeConfiguration config = reader.read(TestDataSource.class.getResourceAsStream("FileFilter.ctd"));
// write to test file
File tmp = File.createTempFile("testing_", ".ini");
tmp.deleteOnExit();
BufferedWriter buffered_file_writer = new BufferedWriter(new FileWriter(tmp));
CTDConfigurationWriter file_writer = new CTDConfigurationWriter(buffered_file_writer);
file_writer.write(config);
config = reader.read(new FileInputStream(tmp));
StringParameter mz = (StringParameter) config.getParameter("FileFilter.1.mz");
assertEquals("m/z range to extract (applies to ALL ms levels!)", mz.getDescription());
assertEquals(":", mz.getValue());
assertEquals("mz", mz.getKey());
IntegerListParameter levels = (IntegerListParameter) config.getParameter("FileFilter.1.peak_options.level");
assertNotNull(levels);
assertEquals("MS levels to extract", levels.getDescription());
assertEquals(3, levels.getValue().size());
assertEquals(1, levels.getValue().get(0).intValue());
assertEquals(2, levels.getValue().get(1).intValue());
assertEquals(3, levels.getValue().get(2).intValue());
assertEquals(false, levels.isAdvanced());
assertEquals(Integer.valueOf(1), levels.getLowerBound());
StringChoiceParameter int_precision = (StringChoiceParameter) config.getParameter("FileFilter.1.peak_options.int_precision");
assertEquals("32", int_precision.getValue());
assertEquals(3, int_precision.getAllowedValues().size());
BoolParameter no_progress = (BoolParameter) config.getParameter("FileFilter.1.no_progress");
assertEquals(false, no_progress.getValue());
assertEquals(true, no_progress.isAdvanced());
// Three inputs, one required, one optional with default, one optional without default
assertEquals(2, config.getInputPorts().size());
assertEquals("FileFilter.1.in", config.getInputPorts().get(0).getName());
}
use of com.genericworkflownodes.knime.parameter.StringChoiceParameter in project GenericKnimeNodes by genericworkflownodes.
the class ParamHandler method handleStringType.
/**
* Convert the current element into a StringParameter.
*
* @param paramName
* The name of the Parameter
* @param paramValue
* The value of the Parameter as given in the param file.
* @param attributes
* Attributes of the Parameter.
*/
private void handleStringType(String paramName, String paramValue, Attributes attributes) {
if (isPort(attributes)) {
createPort(paramName, attributes, false);
} else {
// check if we have a boolean
String restrictions = attributes.getValue(ATTR_RESTRICTIONS);
if (isBooleanParameter(restrictions)) {
m_currentParameter = new BoolParameter(paramName, paramValue);
} else {
if (restrictions != null && restrictions.length() > 0) {
m_currentParameter = new StringChoiceParameter(paramName, restrictions.split(","));
((StringChoiceParameter) m_currentParameter).setValue(paramValue);
} else {
m_currentParameter = new StringParameter(paramName, paramValue);
}
}
}
}
use of com.genericworkflownodes.knime.parameter.StringChoiceParameter in project GenericKnimeNodes by genericworkflownodes.
the class CTDConfigurationWriter method addStringChoices.
private void addStringChoices(StringBuffer item, Parameter<?> p) {
StringChoiceParameter scp = (StringChoiceParameter) p;
// the list of allowed values will contain the empty string depending on
// whether the parameter is optional or not
List<String> values = scp.getAllowedValues();
item.append(" restrictions=\"");
String sep = "";
for (String rv : values) {
if (scp.isOptional() && "".equals(rv)) {
continue;
}
item.append(sep);
item.append(rv);
sep = ",";
}
item.append('\"');
}
Aggregations