mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 22:06:53 +08:00
More ColumnListParameter cleanup. Eliminated dynamic options from some tools by using ColumnListParameter.
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
<command interpreter="python">scatterplot.py $input $out_file1 $col1 $col2 "$title" "$xlab" "$ylab"</command>
|
||||
<inputs>
|
||||
<param name="input" type="data" format="tabular" label="Dataset" help="Query missing? See TIP below"/>
|
||||
<param name="col1" type="columnlist" assoc_dataset="input" numerical="True" label="Numerical column for x axis" />
|
||||
<param name="col2" type="columnlist" assoc_dataset="input" numerical="True" label="Numerical column for y axis" />
|
||||
<param name="col1" type="data_column" data_ref="input" numerical="True" label="Numerical column for x axis" />
|
||||
<param name="col2" type="data_column" data_ref="input" numerical="True" label="Numerical column for y axis" />
|
||||
<param name="title" size="30" type="text" value="Scatterplot" label="Plot title"/>
|
||||
<param name="xlab" size="30" type="text" value="V1" label="Label for x axis"/>
|
||||
<param name="ylab" size="30" type="text" value="V2" label="Label for y axis"/>
|
||||
|
||||
Reference in New Issue
Block a user