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
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ The VarDictJava program follows the workflow:
2. Find structural variants (optionally can be disabled by option `-U`).
3. Realign some of the variants using realignment of insertions, deletions, large insertions, and large deletions using unaligned parts of reads
(soft-clipped ends). This step is optional and can be disabled using the `-k 0` switch.
4. Calculate statistics for the variant, filter out some bad ones, if any.
4. Apply variant filtering rules (hard filters) defined in [Variant filtering](Readme.md#VarFiltering).
5. Assign a type to each variant.
6. Output variants in an intermediate internal format (tabular). Columns of the table are described in the Output Columns section.

Expand Down Expand Up @@ -301,7 +301,7 @@ String | Description
...^[0-9]+ | something followed by a deletion
...&[ATGC]+ | for insertion/deletion variants followed by a matched sequence

#### Variant Filtering
#### <a name="VarFiltering"></a>Variant Filtering
A variant appears in the output if it satisfies the following criteria (in this order).
If variant doesn't fit criteria on the step, it will be filtered out and the next steps won't be checked (except for the step 8, read the explanation below):
1. Frequency of the variant exceeds the threshold set by the `-f` option (default = 1%).
Expand Down
2 changes: 1 addition & 1 deletion VarDict
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
id 'jacoco'
}

version = '1.8.1'
version = '1.8.2'

repositories {
mavenCentral()
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 1.8.2
- Update Readme.md
- Updated integration tests to vcf 4.2

Version 1.8.1
- Updated version.
- Added validation of VCF files in integration tests. Fixed flag InDelLikely name in expected file and duplicated Bias filter. Updated submodule.
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/expected/vardict.paired.vcf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##fileformat=VCFv4.3
##source=VarDict_v1.8.1
##fileformat=VCFv4.2
##source=VarDict_v1.8.2
##INFO=<ID=SAMPLE,Number=1,Type=String,Description="Sample name (with whitespace translated to underscores)">
##INFO=<ID=TYPE,Number=1,Type=String,Description="Variant Type: SNV Insertion Deletion Complex">
##INFO=<ID=DP,Number=1,Type=Integer,Description="Total Depth">
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/expected/vardict.simple.vcf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##fileformat=VCFv4.3
##source=VarDict_v1.8.1
##fileformat=VCFv4.2
##source=VarDict_v1.8.2
##INFO=<ID=SAMPLE,Number=1,Type=String,Description="Sample name (with whitespace translated to underscores)">
##INFO=<ID=TYPE,Number=1,Type=String,Description="Variant Type: SNV Insertion Deletion Complex">
##INFO=<ID=DP,Number=1,Type=Integer,Description="Total Depth">
Expand Down