Skip to content
Commits on Source (9)
mauve-aligner (2.4.0+4736-1) unstable; urgency=medium
* New upstream SVN checkout
* Fake watch file
* d/rules: do not uselessly parse d/changelog
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.1.4
-- Andreas Tille <tille@debian.org> Wed, 04 Jul 2018 22:48:39 +0200
mauve-aligner (2.4.0+4734-3) unstable; urgency=high
* Add explicit dependency on libbiojava-java to enable
......
Source: mauve-aligner
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders:
Andreas Tille <tille@debian.org>,
Afif Elghraoui <afif@ghraoui.name>,
Uploaders: Andreas Tille <tille@debian.org>,
Afif Elghraoui <afif@ghraoui.name>
Section: science
Priority: optional
Build-Depends: debhelper (>= 9),
Build-Depends: debhelper (>= 11~),
javahelper,
default-jdk,
ant,
......@@ -17,10 +16,10 @@ Build-Depends: debhelper (>= 9),
libzeus-jscl-java,
icedtea-netx-common,
libunixsocket-java,
imagemagick,
Standards-Version: 3.9.6
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/mauve-aligner.git
Vcs-Git: git://anonscm.debian.org/debian-med/mauve-aligner.git
imagemagick
Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/med-team/mauve-aligner
Vcs-Git: https://salsa.debian.org/med-team/mauve-aligner.git
Homepage: http://darlinglab.org/mauve/
Package: mauve-aligner
......@@ -28,7 +27,7 @@ Architecture: any
Depends: ${java:Depends},
java-wrappers,
${misc:Depends},
libbiojava-java,
libbiojava-java,
progressivemauve
Recommends: ${java:Recommends}
Description: multiple genome alignment
......
......@@ -6,8 +6,6 @@
#export DH_VERBOSE=1
PACKAGE := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
JAVA_HOME := /usr/lib/jvm/default-java
DEBJAR := /usr/share/java
......
# There is no tarball download location, libMuscle is only available in SVN
version=4
opts=dversionmangle=s/.*/0.No-Release/ \
https://people.debian.org/~eriberto/ FakeWatchNoUpstreamReleaseForThisPackage-(\d\S+)\.gz
src/images/Back16.gif

325 B | W: | H:

src/images/Back16.gif

325 B | W: | H:

src/images/Back16.gif
src/images/Back16.gif
src/images/Back16.gif
src/images/Back16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/Down16.gif

332 B | W: | H:

src/images/Down16.gif

332 B | W: | H:

src/images/Down16.gif
src/images/Down16.gif
src/images/Down16.gif
src/images/Down16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/Home16.gif

582 B | W: | H:

src/images/Home16.gif

588 B | W: | H:

src/images/Home16.gif
src/images/Home16.gif
src/images/Home16.gif
src/images/Home16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/Up16.gif

219 B | W: | H:

src/images/Up16.gif

219 B | W: | H:

src/images/Up16.gif
src/images/Up16.gif
src/images/Up16.gif
src/images/Up16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/Zoom16.gif

592 B | W: | H:

src/images/Zoom16.gif

592 B | W: | H:

src/images/Zoom16.gif
src/images/Zoom16.gif
src/images/Zoom16.gif
src/images/Zoom16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/ZoomIn16.gif

622 B | W: | H:

src/images/ZoomIn16.gif

626 B | W: | H:

src/images/ZoomIn16.gif
src/images/ZoomIn16.gif
src/images/ZoomIn16.gif
src/images/ZoomIn16.gif
  • 2-up
  • Swipe
  • Onion skin
src/images/ZoomIn24.gif

703 B | W: | H:

src/images/ZoomIn24.gif

698 B | W: | H:

src/images/ZoomIn24.gif
src/images/ZoomIn24.gif
src/images/ZoomIn24.gif
src/images/ZoomIn24.gif
  • 2-up
  • Swipe
  • Onion skin
......@@ -130,6 +130,7 @@ public class SnpExporter {
for (int i = 0; i < snps.length; i++){
output.write(snps[i].toString()+"\n");
}
output.flush(); // don't forget to flush!
}
public static void exportGaps(XmfaViewerModel model, XMFAAlignment xmfa, BufferedWriter output) throws IOException {
......@@ -139,6 +140,7 @@ public class SnpExporter {
for (Gap[] ar: gaps)
for (Gap g: ar)
output.write(g.toString()+"\n");
output.flush(); // don't forget to flush!
}
public static SNP[] getSNPs(XmfaViewerModel model){
......