-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Dynamic options: add data table filter #12941
Open
bernt-matthias
wants to merge
21
commits into
galaxyproject:dev
Choose a base branch
from
bernt-matthias:topic/data-table-filter
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+406
−11
Open
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
e66f4bb
add data table filter
bernt-matthias 26043cd
add more linting for filters
bernt-matthias 2470e46
use test/functional/tool-data/ as tool-data dir in tests
bernt-matthias d7c99a0
forbid from_file to reference files outside of tool-data
bernt-matthias 64831e0
fix linter and syntax errors
bernt-matthias 5b7df0f
add link to tool-data/shared in test tool-data
bernt-matthias bce9300
remove debug messages
bernt-matthias 95bbd88
fix rebase mistake
bernt-matthias 8633181
one more rebase error
bernt-matthias d199a27
add context to new linter messages
bernt-matthias f6d9ca9
Merge branch 'dev' into topic/data-table-filter
bernt-matthias 38e60d6
add missing import
bernt-matthias c1bb7b5
update black formatting
bernt-matthias 840ebe0
Merge branch 'dev' into topic/data-table-filter
bernt-matthias c1091c1
update linters and tests to new style
bernt-matthias 967db5b
Merge branch 'dev' into topic/data-table-filter
bernt-matthias e8a612b
remove unnecessary list comprehensions
bernt-matthias a664638
fix number of tests
bernt-matthias 536f2cf
Merge branch 'dev' into topic/data-table-filter
bernt-matthias cde25ed
Update test/unit/tool_util/test_tool_linters.py
bernt-matthias d206795
Merge branch 'dev' into topic/data-table-filter
bernt-matthias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,7 +192,6 @@ def setup_galaxy_config( | |
data_manager_config_file = _resolve_relative_config_paths(data_manager_config_file) | ||
tool_config_file = _resolve_relative_config_paths(tool_conf) | ||
tool_data_table_config_path = _resolve_relative_config_paths(tool_data_table_config_path) | ||
|
||
config = dict( | ||
admin_users="[email protected]", | ||
allow_library_path_paste=True, | ||
|
@@ -224,6 +223,7 @@ def setup_galaxy_config( | |
running_functional_tests=True, | ||
template_cache_path=template_cache_path, | ||
tool_config_file=tool_config_file, | ||
tool_data_path="test/functional/tool-data/", | ||
tool_data_table_config_path=tool_data_table_config_path, | ||
tool_path=tool_path, | ||
update_integrated_tool_panel=update_integrated_tool_panel, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../tool-data/shared |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
hg19_value hg19 hg19_name hg19_path | ||
absent_value absent absent_name absent_path |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the normpath call necessary here ?
safe_contains
should be smart enough to figure this out, and joining withcwd
for non-absolute paths does not seem right (that seems to be what normpath does internally).