-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from bebatut/split_commands
Split script into 2 commands: 1 to extract, 1 to filter tools Tested locally, got: 1295 Tool "Suits" with 16 duplicates which accounts to 2915 tool ids. Thank you @bebatut !
- Loading branch information
Showing
7 changed files
with
187 additions
and
121 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[settings] | ||
combine_as_imports=true | ||
force_alphabetical_sort_within_sections=true | ||
# Override force_grid_wrap value from profile=black, but black is still happy | ||
force_grid_wrap=2 | ||
# Same line length as for black | ||
line_length=120 | ||
no_lines_before=LOCALFOLDER | ||
profile=black | ||
reverse_relative=true | ||
skip_gitignore=true |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
mkdir -p 'results/' | ||
|
||
python bin/extract_galaxy_tools.py \ | ||
extractools \ | ||
--api $GITHUB_API_KEY \ | ||
--all_tools 'results/all_tools.tsv' |
Oops, something went wrong.