Skip to content

Commit

Permalink
v0.2.3: roll out latest fixes and update to biojava4
Browse files Browse the repository at this point in the history
  • Loading branch information
chapmanb committed Feb 1, 2015
1 parent 70d0a07 commit 74cb915
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 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.3 (1 February 2015)

- Correctly handle sample names with all numbers -- parse as strings.
- Handle BED inputs with non-system line breaks.
- Update to BioJava 4.

## 0.2.2 (9 January 2015)

- Ensemble calling: correctly handle inputs with same base filename in different
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ associated with different variant representations.

### Download

The latest release is 0.2.1 (3 January 2015): [bcbio.variation-0.2.1-standalone.jar][dl].
The latest release is 0.2.3 (1 February 2015): [bcbio.variation-0.2.3-standalone.jar][dl].
Run from the command line:

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

[dl]: https://github.com/chapmanb/bcbio.variation/releases/download/v0.2.1/bcbio.variation-0.2.1-standalone.jar
[dl]: https://github.com/chapmanb/bcbio.variation/releases/download/v0.2.3/bcbio.variation-0.2.3-standalone.jar

### As a library

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject bcbio.variation "0.2.3-SNAPSHOT"
(defproject bcbio.variation "0.2.3"
: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 All @@ -22,8 +22,8 @@
[org.simpleframework/simple-xml "2.0.4"]
[org.apache.servicemix.bundles/org.apache.servicemix.bundles.jets3t "0.8.1_1"]
;;
[org.biojava/biojava3-core "4.0.0-SNAPSHOT"]
[org.biojava/biojava3-alignment "4.0.0-SNAPSHOT"]
[org.biojava/biojava-core "4.0.0"]
[org.biojava/biojava-alignment "4.0.0"]
[org.clojars.chapmanb/circdesigna "0.0.2" :exclusions [net.sf.beaver/beaver-ant]]
[nz.ac.waikato.cms.weka/weka-stable "3.6.6"]
[org.clojars.chapmanb/fast-random-forest "0.98"]
Expand Down
4 changes: 2 additions & 2 deletions src/bcbio/variation/complex.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
polymorphisms and indels."
(:import [htsjdk.variant.variantcontext Allele
VariantContextBuilder GenotypesContext GenotypeBuilder]
[org.biojava3.core.sequence DNASequence]
[org.biojava3.alignment Alignments SimpleGapPenalty
[org.biojava.nbio.core.sequence DNASequence]
[org.biojava.nbio.alignment Alignments SimpleGapPenalty
Alignments$PairwiseSequenceScorerType])
(:use [clojure.java.io]
[clojure.set :only [union]]
Expand Down

0 comments on commit 74cb915

Please sign in to comment.