Skip to content
Open
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 @@ -8,6 +8,7 @@ About changelog [here](https://keepachangelog.com/en/1.0.0/)
## [4.113.3]
### Fixed
- Removed markdown formatting for rendering comment tables (#6452)
- Parsing of Exac max frequency (#6472)

## [4.113.2]
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion scout/parse/variant/frequency.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
THOUSAND_GENOMES_MAX_KEYS = ["1000G_MAX_AF"]

EXAC_KEYS = ["EXACAF"]
EXAC_MAX_KEYS = ["ExAC_MAX_AF", "EXAC_MAX_AF"]
EXAC_MAX_KEYS = ["ExAC_MAX_AF", "EXAC_MAX_AF", "EXACMAX_AF", "EXACMAXAF"]

# gnomAD has both SNV and SV
GNOMAD_INFO_KEYS = ["GNOMADAF", "GNOMAD_AF", "gnomADg_AF", "gnomad_svAF", "gnomad_af"]
Expand Down
Loading