This file is indexed.

/usr/include/seqan/stream/INFO is in seqan-dev 1.4.2+dfsg-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
Name: seqan-stream
Author: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de>
Author: Hannes Hauswedell <hauswedell@mi.fu-berlin.de>
Maintainer: Manuel Holtgrewe <manuel.holtgrewe@fu-berlin.de>
License: 3-clause BSD
Copyright: 2011-1013, FU Berlin
Homepage: http://www.seqan.de/
Version: 0.1
Status: under development
Depends: seqan-basic
Depends: seqan-sequence
Depends: seqan-file
Recommends: zlib
Recommends: bzlib
Description: Input / Output abstraction module.
 The stream module has two main aspects: (1) The Stream concept for abstracting
 I/O and (2) The record and document I/O concept.
 .
 It contains implementations for both concepts: Adaptions from the <cstdio>
 FILE* stream and streams from the IOstreams library to the Stream concept and
 wrapper classes for reading and writing .gz and .bz2 files (if available).
 Implementations of the record reader class are available for Streams and memory
 mapped strings.
 .
 Furthermore, it provides record and documentation reading functionality for
 FASTA and FASTQ files.
 .
 Demos:
 .
 benchmark_stream  FASTA input/output using all stream implementations and
 also demonstrates how to use the SEQAN_HAS* macros defined in this module to
 conditionally enable .gz and .bz2 support.