Skip to content

Commit a012403

Browse files
committed
v0.2.0: Avoid putting fully specified indels into structural variant comparison, which can lead to masked smaller calls on heterozygous deletions. Thanks to Severine Catreux
1 parent 3e34b6b commit a012403

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

HISTORY.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.2.0 (17 December 2014)
2+
3+
- Avoid putting fully specified indels into structural variant comparison, which
4+
can lead to masked smaller calls on heterozygous deletions. Now do exact
5+
comparisons via standard methods. Thanks to Severine Catreux.
6+
17
## 0.1.9 (6 November 2014)
28

39
- Handle file inputs with identical final file names (but in different

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ provide example starting points and details on available options are below:
160160
[full,quick] (default:full)
161161
params: # Processing parameters associated with this experiment
162162
max-indel: Maximum indel size to include in non-structural variant
163-
comparisons (default: 30)
163+
comparisons (default: 5000)
164164
multiple-thresh: Threshold for percentage of comparisons to match
165165
to consider two multiple sample variants the same.
166166
(default: 1.0)

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject bcbio.variation "0.1.9"
1+
(defproject bcbio.variation "0.2.0"
22
:description "Toolkit to analyze genomic variation data, built on the GATK with Clojure"
33
:license {:name "MIT" :url "http://www.opensource.org/licenses/mit-license.html"}
44
:dependencies [[org.clojure/clojure "1.5.1"]

src/bcbio/variation/structural.clj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@
1818
(def ^{:private true
1919
:doc "Default maximum indel size for exact comparisons.
2020
Initially based on assessment by Gavin Oliver: http://f1000r.es/MsY1QZ
21-
Increased to work with longer default read sizes where we expect exact matches"}
22-
max-indel 100)
21+
Increased to work with longer default read sizes where we expect exact matches
22+
and avoid switching into SV calling."}
23+
max-indel 5000)
2324

2425
;; ## Interval tree lookup
2526

0 commit comments

Comments
 (0)