Hi,
I'm trying to run a workflow on a local Galaxy instance that has these steps in the beginning:
Map with Bowtie for Illumina, Filter SAM, SAM-to-BAM, ...
Everything goes well up to the SAM-to-BAM step, where I get a LateValidationError:
Traceback (most recent call last):
File "/data/galaxy/lib/galaxy/jobs/runners/__init__.py", line 157, in prepare_job
job_wrapper.prepare()
File "/data/galaxy/lib/galaxy/jobs/__init__.py", line 807, in prepare
tool_evaluator.set_compute_environment( compute_environment, get_special=get_special )
File "/data/galaxy/lib/galaxy/tools/evaluation.py", line 53, in set_compute_environment
self.tool.handle_unvalidated_param_values( incoming, self.app )
File "/data/galaxy/lib/galaxy/tools/__init__.py", line 2825, in handle_unvalidated_param_values
self.handle_unvalidated_param_values_helper( self.inputs, input_values, app )
File "/data/galaxy/lib/galaxy/tools/__init__.py", line 2844, in handle_unvalidated_param_values_helper
self.handle_unvalidated_param_values_helper( input.cases[current].inputs, values, app, context, prefix )
File "/data/galaxy/lib/galaxy/tools/__init__.py", line 2865, in handle_unvalidated_param_values_helper
raise LateValidationError( message )
LateValidationError
and the following message: Failed runtime validation of Using reference genome (An invalid option was selected, please verify)
I'm using ce6 as the reference genome and setting it for SAM-to-BAM before I run the workflow (I also tried the 'Set at runtime' option but got the same result). Is there an extra step I'm missing (even though the Map with Bowtie for Illumina already recognizes ce6 and runs just fine)?
Thanks very much!