File: control

package info (click to toggle)
libbio-featureio-perl 1.6.905-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 344 kB
  • sloc: perl: 1,479; makefile: 2
file content (51 lines) | stat: -rw-r--r-- 2,240 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: libbio-featureio-perl
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Michael R. Crusoe <michael.crusoe@gmail.com>
Section: science
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 12)
Build-Depends-Indep: libbio-perl-perl,
                     libscalar-list-utils-perl,
                     libtest-simple-perl,
                     libtest-most-perl,
                     libtree-dagnode-perl,
                     liburi-perl,
                     libxml-dom-perl,
                     libxml-dom-xpath-perl,
                     perl
Standards-Version: 4.4.1
Homepage: https://metacpan.org/release/Bio-FeatureIO
Vcs-Browser: https://salsa.debian.org/med-team/libbio-featureio-perl
Vcs-Git: https://salsa.debian.org/med-team/libbio-featureio-perl.git

Package: libbio-featureio-perl
Architecture: all
Section: perl
Depends: ${misc:Depends},
         ${perl:Depends},
         libbio-perl-perl,
         libscalar-list-utils-perl,
         libtree-dagnode-perl,
         liburi-perl,
         libxml-dom-perl,
         libxml-dom-xpath-perl
Description: Modules for reading, writing, and manipulating sequence features
 An I/O iterator subsystem for genomic sequence features.
 .
 Bio::FeatureIO is a handler module for the formats in the FeatureIO set (eg,
 Bio::FeatureIO::GFF). It is the officially sanctioned way of getting at the
 format objects, which most people should use.
 .
 The Bio::FeatureIO system can be thought of like biological file handles.
 They are attached to filehandles with smart formatting rules (eg, GFF format,
 or BED format) and can either read or write feature objects (Bio::SeqFeature
 objects, or more correctly, Bio::FeatureHolderI implementing objects, of
 which Bio::SeqFeature is one such object). If you want to know what to do
 with a Bio::SeqFeatureI object, read Bio::SeqFeatureI.
 .
 The idea is that you request a stream object for a particular format. All the
 stream objects have a notion of an internal file that is read from or written
 to. A particular FeatureIO object instance is configured for either input or
 output. A specific example of a stream object is the Bio::FeatureIO::gff
 object.