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

Fix #76 - revert to output unannotated loci #78

Merged
merged 1 commit into from
Sep 26, 2024
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Use codecov badge and fix scout link on README page
- Added a test for TRGT MCs set to `.`
- Added CLI test for TRGT file
- Fix codecov upload hidden artifact issue
- Codecov upload hidden artifact issue
- Incorrect multisample, multiallele FORMAT output
- Write unannotated entries (not in definition file) to output (reverted to pre-0.9 behaviour)

## [0.9.1]
### Added
Expand Down
2 changes: 1 addition & 1 deletion stranger/cli.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import gzip
import logging
from codecs import getreader, open
from pprint import pprint as pp

Check failure on line 4 in stranger/cli.py

View workflow job for this annotation

GitHub Actions / vulture

unused import 'pp' (90% confidence)

import click
import coloredlogs
Expand All @@ -24,7 +24,7 @@
LOG_LEVELS = ["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"]


def print_version(ctx, param, value):

Check failure on line 27 in stranger/cli.py

View workflow job for this annotation

GitHub Actions / vulture

unused variable 'param' (100% confidence)
if not value or ctx.resilient_parsing:
return
click.echo(__version__)
Expand Down Expand Up @@ -211,4 +211,4 @@
repeat_data[annotate_repeat_key]
)

click.echo(get_variant_line(variant_info, header_info))
click.echo(get_variant_line(variant_info, header_info))
Loading