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

Formatted with black and added pull-request event trigger on GHA #56

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Run tests
on: [push]
on: [push, pull_request]
jobs:
run-tests:
runs-on: ubuntu-20.04
Expand Down
3 changes: 1 addition & 2 deletions bin/get_qc_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,7 @@ def convert_to_dict(checkqc_config):
both_read_lengths = run_type_recognizer.read_length()
read_length = int(both_read_lengths.split("-")[0])
checkqc_config = config.get_handler_configs(
instrument_and_reagent_version, read_length,
use_closest_read_length=True
instrument_and_reagent_version, read_length, use_closest_read_length=True
)
checkqc_config_dict = convert_to_dict(checkqc_config)
multiqc_config = convert_to_multiqc_config(checkqc_config_dict)
Expand Down
Loading