Commit debb98f9 authored by Andreas Tille's avatar Andreas Tille
Browse files

New upstream version 1.23+dfsg

parent b87dd34c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
Copyright 2012-2014 Broad Institute, Inc.
Copyright (c) 2012-2018 Broad Institute, Inc.

Pilon is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License version 2
+3 −4
Original line number Diff line number Diff line
name := "pilon"

version := "1.22"
version := "1.23"

scalaVersion := "2.11.8"
scalaVersion := "2.12.7"

scalacOptions += "-deprecation"

scalacOptions += "-feature"

Seq(com.github.retronym.SbtOneJar.oneJarSettings: _*)

libraryDependencies += "commons-lang" % "commons-lang" % "2.6"
+2 −2
Original line number Diff line number Diff line
@@ -11,6 +11,6 @@ sed -e "s/\(date.*=\).*/\\1 \"$commitdate\"/" \
    -e "s/\(sbt.*=\).*/\\1 \"$version\"/" \
    <$tmp >$f
#sbt $* package
sbt $* one-jar
ln -sf `pwd`/target/scala-2.11/pilon_2.11-$version-one-jar.jar ~/lib/pilon/pilon-dev.jar
sbt $* assembly
ln -sf `pwd`/target/scala-2.12/pilon-assembly-$version.jar ~/lib/pilon/pilon-dev.jar
mv $tmp $f
+1 −1
Original line number Diff line number Diff line
addSbtPlugin("com.github.retronym" % "sbt-onejar" % "0.8")
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.6")
+3 −4
Original line number Diff line number Diff line
/*
 * Copyright 2012-2015 Broad Institute, Inc.
 * Copyright (c) 2012-2018 Broad Institute, Inc.
 *
 * This file is part of Pilon.
 *
@@ -14,12 +14,11 @@
 *
 * You should have received a copy of the GNU General Public License
 * along with Pilon.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

package org.broadinstitute.pilon
import scala.annotation.tailrec
import collection.JavaConversions._
import collection.mutable.{ Map, HashMap, Set, HashSet }
import collection.mutable.{ HashMap, HashSet }
import htsjdk.samtools._

object Assembler {
Loading