Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Try to use the following format:
- Sorting command more inclusive for e.g. BusyBox sort for containers built with Bioconda ([#198](https://github.com/Clinical-Genomics/genmod/pull/198))
- Fix symbolic SVs being silently dropped when sharing the same CHROM,POS and REF ([#191](https://github.com/Clinical-Genomics/genmod/pull/191))
- Print header in `genmod models` when running with `--processes 1` ([#199](https://github.com/Clinical-Genomics/genmod/pull/199))
- Fixed duplicate parameter `-s` in genmod models ([#202](https://github.com/Clinical-Genomics/genmod/pull/202))

## [3.10.2]
### Fixed
Expand Down
3 changes: 1 addition & 2 deletions genmod/commands/annotate_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
)
@click.option("--phased", is_flag=True, help="If data is phased use this flag.")
@click.option(
"-s",
"--strict",
is_flag=True,
help="If strict model annotations should be used(see documentation).",
Expand All @@ -78,7 +77,7 @@
"-k",
"--keyword",
default="Annotation",
help="""What annotation keyword that should be used when
help="""What annotation keyword that should be used when
searching for features.""",
)
@outfile
Expand Down
Loading