Bug #2596
Updated by Tom Clegg over 10 years ago
Pipeline template has a list as a default for one of its script_parameters.
* Template: https://workbench.qr1hi.arvadosapi.com/pipeline_templates/qr1hi-p5p6p-1q2vu30xc2uyuts
<pre><code class="javascript">
"GATK2_UnifiedGenotyper_args": {
"default": [
"-stand_call_conf",
"30.0",
"-stand_emit_conf",
"30.0",
"-dcov",
"200"
]
}
</code></pre>
Click "Create pipeline". Args all still look OK.
Click "Start". But now:
* Instance: https://workbench.qr1hi.arvadosapi.com/pipeline_instances/qr1hi-d1hrv-b80jxxz5mhv1l0d
<pre><code class="javascript">
"GATK2_UnifiedGenotyper_args": [
"-stand_call_conf",
"30.0",
"-stand_emit_conf",
"-dcov",
"200"
]
}
</code></pre>