Skip to content

Commit

Permalink
Bump/version thresholds (#521)
Browse files Browse the repository at this point in the history
* update test thresholds

* bump version
  • Loading branch information
dennishendriksen authored Nov 10, 2023
1 parent 783690f commit 5e5ed0c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/nxf.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
env {
VIP_VERSION = "6.2.0"
VIP_VERSION = "6.3.0"

TMPDIR = "\${TMPDIR:-\${NXF_TEMP:-\$(mktemp -d)}}"
APPTAINER_BIND = "${APPTAINER_BIND}"
Expand Down
2 changes: 1 addition & 1 deletion test/suites/vcf/lb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ args+=("--resume")
vip "${args[@]}" 1> /dev/null

# compare expected to actual output and store result
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -gt 144 ]; then
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -gt 142 ]; then
result="0"
else
result="1"
Expand Down
2 changes: 1 addition & 1 deletion test/suites/vcf/lb_b38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ args+=("--resume")
vip "${args[@]}" 1> /dev/null

# compare expected to actual output and store result
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -gt 151 ]; then
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -gt 148 ]; then
result="0"
else
result="1"
Expand Down
2 changes: 1 addition & 1 deletion test/suites/vcf/lp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ args+=("--resume")
vip "${args[@]}" 1> /dev/null

# compare expected to actual output and store result
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -lt 2301 ]; then
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -lt 2302 ]; then
result="0"
else
result="1"
Expand Down
2 changes: 1 addition & 1 deletion test/suites/vcf/lp_b38.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ args+=("--resume")
vip "${args[@]}" 1> /dev/null

# compare expected to actual output and store result
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -lt 2302 ]; then
if [ ! "$(zcat "${OUTPUT_DIR}/vip.vcf.gz" | grep -vc "^#")" -lt 2304 ]; then
result="0"
else
result="1"
Expand Down

0 comments on commit 5e5ed0c

Please sign in to comment.