Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add command_line_override to tool class #24

Merged
merged 3 commits into from
Aug 11, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'master' into master
fubar2 authored Aug 11, 2020
commit 96de6bea0182a268572785bd96748a02ee25d505
20 changes: 16 additions & 4 deletions galaxyxml/tool/__init__.py
Original file line number Diff line number Diff line change
@@ -13,10 +13,22 @@

class Tool(GalaxyXML):

def __init__(self, name, id, version, description, executable, hidden=False,
tool_type=None, URL_method=None, workflow_compatible=True,
interpreter=None, version_command='interpreter filename.exe --version',
command_line_override=None):
def __init__(
self,
name,
id,
version,
description,
executable,
hidden=False,
tool_type=None,
URL_method=None,
workflow_compatible=True,
interpreter=None,
version_command="interpreter filename.exe --version",
command_line_override=None,
):


self.executable = executable
self.interpreter = interpreter
You are viewing a condensed version of this merge commit. You can view the full changes here.