Skip to content

Commit

Permalink
v0.2.0: Avoid putting fully specified indels into structural variant …
Browse files Browse the repository at this point in the history
…comparison, which can lead to masked smaller calls on heterozygous deletions. Thanks to Severine Catreux
  • Loading branch information
chapmanb committed Dec 18, 2014
1 parent 3e34b6b commit a012403
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.2.0 (17 December 2014)

- Avoid putting fully specified indels into structural variant comparison, which
can lead to masked smaller calls on heterozygous deletions. Now do exact
comparisons via standard methods. Thanks to Severine Catreux.

## 0.1.9 (6 November 2014)

- Handle file inputs with identical final file names (but in different
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ provide example starting points and details on available options are below:
[full,quick] (default:full)
params: # Processing parameters associated with this experiment
max-indel: Maximum indel size to include in non-structural variant
comparisons (default: 30)
comparisons (default: 5000)
multiple-thresh: Threshold for percentage of comparisons to match
to consider two multiple sample variants the same.
(default: 1.0)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject bcbio.variation "0.1.9"
(defproject bcbio.variation "0.2.0"
:description "Toolkit to analyze genomic variation data, built on the GATK with Clojure"
:license {:name "MIT" :url "http://www.opensource.org/licenses/mit-license.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
Expand Down
5 changes: 3 additions & 2 deletions src/bcbio/variation/structural.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
(def ^{:private true
:doc "Default maximum indel size for exact comparisons.
Initially based on assessment by Gavin Oliver: http://f1000r.es/MsY1QZ
Increased to work with longer default read sizes where we expect exact matches"}
max-indel 100)
Increased to work with longer default read sizes where we expect exact matches
and avoid switching into SV calling."}
max-indel 5000)

;; ## Interval tree lookup

Expand Down

0 comments on commit a012403

Please sign in to comment.