File: control

package info (click to toggle)
libssw 1.2.5-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 28,604 kB
  • sloc: ansic: 6,518; cpp: 496; python: 379; java: 136; makefile: 102; sh: 29
file content (78 lines) | stat: -rw-r--r-- 3,158 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Source: libssw
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Sascha Steinbiss <satta@debian.org>,
           Michael R. Crusoe <crusoe@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper-compat (= 13),
               default-jdk-headless <!nojava>,
               javahelper <!nojava>,
               help2man,
               zlib1g-dev,
               libsimde-dev,
               maven-repo-helper <!nojava>
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/med-team/libssw
Vcs-Git: https://salsa.debian.org/med-team/libssw.git
Homepage: https://github.com/mengyao/Complete-Striped-Smith-Waterman-Library
Rules-Requires-Root: no

Package: libssw1
Architecture: any
Multi-Arch: same
Section: libs
Depends: ${shlibs:Depends},
         ${misc:Depends},
         zlib1g
Pre-Depends: ${misc:Pre-Depends}
Description: fast SIMD parallelized implementation of the Smith-Waterman algorithm
 SSW is a fast implementation of the Smith-Waterman algorithm, which uses the
 Single-Instruction Multiple-Data (SIMD) instructions to parallelize the
 algorithm at the instruction level. SSW library provides an API that can be
 flexibly used by programs written in C, C++ and other languages. The library
 can do protein and genome alignment directly.
 Current version of this implementation is ~50 times faster than an ordinary
 Smith-Waterman. It can return the Smith-Waterman score, alignment location
 and traceback path (cigar) of the optimal alignment accurately; and return
 the sub-optimal alignment score and location heuristically.

Package: libssw-dev
Architecture: any
Multi-Arch: same
Section: libdevel
Depends: ${misc:Depends},
         libssw1 (= ${binary:Version})
Pre-Depends: ${misc:Pre-Depends}
Provides: libssw-dev
Description: Development headers and static libraries for libssw
 This package provides development headers and static libraries for libssw,
 a fast implementation of the Smith-Waterman algorithm using
 Single-Instruction Multiple-Data (SIMD) instructions to parallelize the
 algorithm at the instruction level.

Package: libssw-java
Build-Profiles: <!nojava>
Architecture: any
Section: java
Depends: ${java:Depends},
         ${shlibs:Depends},
         ${misc:Depends}
Recommends: ${java:Recommends}
Description: Java bindings for libssw
 This package provides JNI based Java bindings for libssw, a fast
 implementation of the Smith-Waterman algorithm using Single-Instruction
 Multiple-Data (SIMD) instructions to parallelize the algorithm at the
 instruction level.

Package: ssw-align
Architecture: any
Depends: ${shlibs:Depends},
         ${misc:Depends},
         libssw1 (= ${binary:Version})
Description: Smith-Waterman aligner based on libssw
 This package provides a command-line aligner based on the libssw library,
 a fast SIMD accelerated implementation of the Smith-Waterman algorithm.
 The input files can be in FASTA or FASTQ format. Both target and query files
 can contain multiple sequences. Each sequence in the query file will be
 aligned with all sequences in the target file. Output is provided in SAM or
 BLAST-like text format.