Skip to content

Commit bdf24c6

Browse files
committed
v0.2.1: Avoid normalization as part of ensemble process, which can cause issues with some inputs (Fixes #21). Instead rely on upstream normalization
1 parent a012403 commit bdf24c6

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.2.1 (3 January 2015)
2+
3+
- Do not normalize by default as part of ensemble combining. Prefer that to be
4+
done upstream by other software.
5+
16
## 0.2.0 (17 December 2014)
27

38
- Avoid putting fully specified indels into structural variant comparison, which

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ associated with different variant representations.
3333

3434
### Download
3535

36-
The latest release is 0.1.9 (6 November 2014): [bcbio.variation-0.1.9-standalone.jar][dl].
36+
The latest release is 0.2.1 (3 January 2015): [bcbio.variation-0.2.1-standalone.jar][dl].
3737
Run from the command line:
3838

3939
$ java -jar bcbio.variation-VERSION-standalone.jar [arguments]
@@ -44,7 +44,7 @@ the library for variant comparison, normalization and ensemble calling. Note
4444
that bcbio.variation requires Java 1.7 since the underlying GATK libraries are
4545
not compatible with earlier versions.
4646

47-
[dl]: https://github.com/chapmanb/bcbio.variation/releases/download/v0.1.9/bcbio.variation-0.1.9-standalone.jar
47+
[dl]: https://github.com/chapmanb/bcbio.variation/releases/download/v0.2.1/bcbio.variation-0.2.1-standalone.jar
4848

4949
### As a library
5050

@@ -131,13 +131,13 @@ metrics associated with variants, reactive filtering and automated scoring.
131131
### Run GATK walker for variant statistics
132132

133133
$ lein uberjar
134-
$ java -jar target/bcbio.variation-0.0.1-SNAPSHOT-standalone.jar -T VcfSimpleStatsWalker
134+
$ java -jar target/bcbio.variation-RELEASE-standalone.jar -T VcfSimpleStatsWalker
135135
-R test/data/GRCh37.fa --variant test/data/gatk-calls.vcf --out test.png
136136

137137
### Run custom GATK annotator
138138

139139
$ lein uberjar
140-
$ java -jar target/bcbio.variation-0.0.1-SNAPSHOT-standalone.jar -T VariantAnnotator
140+
$ java -jar target/bcbio.variation-RELEASE-standalone.jar -T VariantAnnotator
141141
-A MeanNeighboringBaseQuality -R test/data/GRCh37.fa -I test/data/aligned-reads.bam
142142
--variant test/data/gatk-calls.vcf -o annotated-file.vcf
143143

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.2.0"
1+
(defproject bcbio.variation "0.2.1"
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/ensemble.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
(or (get (vec (:names config)) i)
3535
(str "v" i)))
3636
:file vrn-file
37-
:normalize true}
37+
:normalize false}
3838
(->/when (get config :prep-inputs true)
3939
(merge {:preclean true :prep true}))))
4040

0 commit comments

Comments
 (0)