Commit 5aa8ee84 authored by Sergey Golitsynskiy's avatar Sergey Golitsynskiy
Browse files

Guard against instance of GenomeIndexToolData

parent 2f1af427
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -86,7 +86,7 @@ class ToolEvaluator:
        if get_special:
            special = get_special()
            if special:
                out_data["output_file"] = special.fda
                out_data["output_file"] = getattr(special, 'fda', None)

        # These can be passed on the command line if wanted as $__user_*__
        incoming.update(model.User.user_template_environment(job.history and job.history.user))