Hi! I am trying to find a nice way to allow workflow users to specify multiple file paths and molecular property limits (rotatable bond count, LogP, number of aryl rings, Lipinski compliance, path to an external executable) - using a single node. Inputs will be double, integers and strings.
Other than a "Table Creator" node is there any other way to achieve using a single node? The problem with the table creator node is that the cell widths are fixed, so the column header is sometimes not entirely visible.
Could you please elaborate a little more on your answer? I am not sure if, what I need, is what the user above requested.
I am using a ‘Column Expression’ node. I am currently bringing in the output from a ‘table row to variable’ (variable/node). However, I need more than one variable input on the column expression. When I select a second ‘table row to variable’ (variable/node) it overwrites it only allowing me to use one.
If required to know…
On my ‘column expression’ I am writing an expression that will search for one variable in a column ie:
if (contains(column(“AB”,“variable 1”) == true) {
do this
} or
if (contains(column(“AB”,“variable 2”) == true) {
do this as well
} else {
do that
}