Skip to content

Commit 7749f4e

Browse files
committed
Version 1.5.6
1 parent 3c7f2ea commit 7749f4e

7 files changed

+305
-9
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'jacoco'
55
}
66

7-
version = '1.5.5'
7+
version = '1.5.6'
88

99
repositories {
1010
mavenCentral()
@@ -65,4 +65,4 @@ test {
6565
useTestNG()
6666
}
6767

68-
applicationDistribution.from('VarDict/teststrandbias.R','VarDict/testsomatic.R','VarDict/var2vcf_valid.pl','VarDict/var2vcf_paired.pl').into('bin')
68+
applicationDistribution.from('VarDict/teststrandbias.R','VarDict/testsomatic.R','VarDict/var2vcf_valid.pl','VarDict/var2vcf_paired.pl').into('bin')

tests/integration/.config.sh.swp

-12 KB
Binary file not shown.
-12 KB
Binary file not shown.
-20 KB
Binary file not shown.

tests/integration/test_non_deterministic_behavior.out

Lines changed: 294 additions & 0 deletions
Large diffs are not rendered by default.

tests/integration/test_non_deterministic_behavior.sh

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,21 @@ for i in $(seq 1 $N); do
1717
echo "Running VarDict Perl: $i / $N"
1818
time $VARDICTPERL \
1919
-G $REF_GENOME \
20-
-f 0.001 -N abc \
21-
-b $COLO20 $UNMAPPED_FLAG \
22-
-c 1 -S 2 -E 3 -g 4 \
20+
-f 0.001 \
21+
-N abc \
22+
-b $COLO20 \
23+
$UNMAPPED_FLAG \
2324
$REGION \
2425
| sort \
2526
> $DIR_OUTPUT/vardictColo20.perl.$i.txt
2627

2728
echo "Running VarDict Java: $i / $N"
2829
time $VARDICTJAVA \
2930
-G $REF_GENOME \
30-
-f 0.001 -N abc \
31-
-b $COLO20 $UNMAPPED_FLAG \
32-
-c 1 -S 2 -E 3 -g 4 \
31+
-f 0.001 \
32+
-N abc \
33+
-b $COLO20 \
34+
$UNMAPPED_FLAG \
3335
$REGION \
3436
| sort \
3537
> $DIR_OUTPUT/vardictColo20.java.$i.txt

0 commit comments

Comments
 (0)