File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 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" ]
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments