Skip to content

Commit

Permalink
Set maximum population frequency to 1%
Browse files Browse the repository at this point in the history
  • Loading branch information
Redmar-van-den-Berg committed Oct 28, 2024
1 parent a28df77 commit 822b97a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ Changelog
.. This document is user facing. Please word the changes in such a way
.. that users understand how the changes affect the new version.
**********
v2.1.2
**********
* Set the maximum population frequency to 1%. This was accidentally set to 5% in v2.1.1

**********
v2.1.1
**********
Expand Down
2 changes: 1 addition & 1 deletion common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ containers = {
}

# The version of HAMLET
PIPELINE_VERSION = "v2.1.1"
PIPELINE_VERSION = "v2.1.2"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
copyright = '2018, LUMC'
author = 'Wibowo Arindrarto, Redmar van den Berg, Xiaoyun Liu'

release = "v2.1.1"
release = "v2.1.2"
version = '.'.join(release.split('.')[0:2])

# -- General configuration
Expand Down
3 changes: 1 addition & 2 deletions includes/snv-indels/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,6 @@ rule annotate_vars:
if config.get("vep_cache")
else ""
),
max_pop_af=0.01,
output:
vep="{sample}/snv-indels/{sample}.vep.txt.gz",
stats="{sample}/snv-indels/{sample}.vep_stats.txt",
Expand Down Expand Up @@ -382,7 +381,7 @@ rule filter_vep:
vep_consequences=config["vep_include_consequence"],
blacklist=f"--blacklist {config['blacklist']}" if "blacklist" in config else "",
population="gnomade",
max_pop_af=0.05,
max_pop_af=0.01,
output:
filtered="{sample}/snv-indels/{sample}.vep.filtered.txt.gz",
log:
Expand Down

0 comments on commit 822b97a

Please sign in to comment.