Skip to content

Commit

Permalink
test v0.1.2
Browse files Browse the repository at this point in the history
fix bugs in the CLI for merge
  • Loading branch information
andyjslee committed Jan 31, 2024
1 parent 0242b28 commit f7eb9dc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vstolib"
version = "0.1.1"
version = "0.1.2"
edition = "2021"

[package.metadata.maturin]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build-backend = "maturin"

[project]
name = "vstol"
version = "0.1.1"
version = "0.1.2"
requires-python = ">=3.10"
keywords = [
"somatic variants",
Expand Down
6 changes: 3 additions & 3 deletions python/vstolib/cli/cli_merge.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,17 +90,17 @@ def add_cli_merge_arg_parser(
parser_optional.add_argument(
"--match-all-breakpoints", '-m',
dest="match_all_breakpoints",
type=int,
type=bool,
required=False,
default=MERGE_MATCH_ALL_BREAKPOINTS,
help="If true, for two VariantCall objects to be considered "
"intersecting, all breakpoints must match or be near each other (default: %r)."
% MERGE_MAX_NEIGHBOR_DISTANCE
% MERGE_MATCH_ALL_BREAKPOINTS
)
parser_optional.add_argument(
"--match-variant-types", '-a',
dest="match_variant_types",
type=int,
type=bool,
required=False,
default=MERGE_MATCH_VARIANT_TYPES,
help="If true, for two VariantCall objects to be considered "
Expand Down

0 comments on commit f7eb9dc

Please sign in to comment.