Hi. Can someone help with this:
I am writing this option line highlighted with ** below. I have tried these 3 ways but none of them work as the command line in galaxy will display awk '{if($9==" __gt__ ") instead of > , which is what I want.
1) >
2) \ > (no space)
3) & g t ; (no space)
xml:
<command>
awk '{if(\$9=="$mutationType") {print \$0}}' $input | cut -f 1-6 > $output
</command>
<inputs>
<param name="mutationType" type="select" label="Select a specific type of mutations ">
<option value="-">deletion</option>
**<option value=" > ">substitution</option>**
<option value="+">insertion</option>
</param>