Skip to content

Commit

Permalink
Version 1.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pcingola committed Oct 5, 2018
1 parent 3c7f2ea commit 7749f4e
Show file tree
Hide file tree
Showing 7 changed files with 305 additions and 9 deletions.
2 changes: 1 addition & 1 deletion VarDict
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'jacoco'
}

version = '1.5.5'
version = '1.5.6'

repositories {
mavenCentral()
Expand Down Expand Up @@ -65,4 +65,4 @@ test {
useTestNG()
}

applicationDistribution.from('VarDict/teststrandbias.R','VarDict/testsomatic.R','VarDict/var2vcf_valid.pl','VarDict/var2vcf_paired.pl').into('bin')
applicationDistribution.from('VarDict/teststrandbias.R','VarDict/testsomatic.R','VarDict/var2vcf_valid.pl','VarDict/var2vcf_paired.pl').into('bin')
Binary file removed tests/integration/.config.sh.swp
Binary file not shown.
Binary file not shown.
Binary file removed tests/integration/.tests_integration.sh.swp
Binary file not shown.
294 changes: 294 additions & 0 deletions tests/integration/test_non_deterministic_behavior.out

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions tests/integration/test_non_deterministic_behavior.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,21 @@ for i in $(seq 1 $N); do
echo "Running VarDict Perl: $i / $N"
time $VARDICTPERL \
-G $REF_GENOME \
-f 0.001 -N abc \
-b $COLO20 $UNMAPPED_FLAG \
-c 1 -S 2 -E 3 -g 4 \
-f 0.001 \
-N abc \
-b $COLO20 \
$UNMAPPED_FLAG \
$REGION \
| sort \
> $DIR_OUTPUT/vardictColo20.perl.$i.txt

echo "Running VarDict Java: $i / $N"
time $VARDICTJAVA \
-G $REF_GENOME \
-f 0.001 -N abc \
-b $COLO20 $UNMAPPED_FLAG \
-c 1 -S 2 -E 3 -g 4 \
-f 0.001 \
-N abc \
-b $COLO20 \
$UNMAPPED_FLAG \
$REGION \
| sort \
> $DIR_OUTPUT/vardictColo20.java.$i.txt
Expand Down

0 comments on commit 7749f4e

Please sign in to comment.