File: control

package info (click to toggle)
pbdagcon 0.3%2B20161121%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,424 kB
  • ctags: 2,583
  • sloc: ansic: 17,770; cpp: 7,747; python: 1,075; makefile: 294; sh: 42
file content (51 lines) | stat: -rw-r--r-- 1,915 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
Source: pbdagcon
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders:
	Afif Elghraoui <afif@debian.org>,
Build-Depends:
	debhelper (>= 10),
	python,
	zlib1g-dev,
	libhdf5-dev,
	libboost-dev,
	libtclap-dev,
	libpbseq-dev,
	libpbbam-dev,
# Test-Depends:
	googletest,
Standards-Version: 3.9.8
Homepage: https://github.com/PacificBiosciences/pbdagcon
Vcs-Git: https://anonscm.debian.org/git/debian-med/pbdagcon.git
Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/pbdagcon.git

Package: pbdagcon
Architecture: any
Depends:
	${shlibs:Depends},
	${misc:Depends},
	libpbseq,
	libpbbam,
Suggests:
	blasr,
Description: sequence consensus using directed acyclic graphs
 pbdagcon is a tool that implements DAGCon (Directed Acyclic Graph Consensus)
 which is a sequence consensus algorithm based on using directed acyclic
 graphs to encode multiple sequence alignment.
 .
 It uses the alignment information from blasr to align sequence reads to a
 "backbone" sequence. Based on the underlying alignment directed acyclic graph
 (DAG), it will be able to use the new information from the reads to find the
 discrepancies between the reads and the "backbone" sequences. A dynamic
 programming process is then applied to the DAG to find the optimum sequence
 of bases as the consensus. The new consensus can be used as a new backbone
 sequence to iteratively improve the consensus quality.
 .
 While the code is developed for processing PacBio(TM) raw sequence data,
 the algorithm can be used for general consensus purpose. Currently, it only
 takes FASTA input. For shorter read sequences, one might need to adjust the
 blasr alignment parameters to get the alignment string properly.
 .
 The code and the underlying graphical data structure have been used for some
 algorithm development prototyping including phasing reads and pre-assembly.