This file is indexed.

/usr/share/doc/glam2/glam2scan.html is in glam2 1064-3.

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
 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
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    "http://www.w3.org/TR/html4/strict.dtd">
<html lang=en>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>glam2scan Manual</title>
<link type="text/css" rel="stylesheet" href="glam2.css">
</head>
<body>

<h1>glam2scan Manual</h1>

<p>glam2scan finds matches, in a sequence database, to a motif
discovered by glam2. Each match receives a score, indicating how well
it fits the motif.</p>

<h2>Basic usage</h2>

<p>Running glam2scan without any arguments gives a usage message:</p>

<pre>
Usage: glam2scan [options] alphabet my_motif.glam2 my_seqs.fa
Main alphabets: p = proteins, n = nucleotides
Main options (default settings):
-h: show all options and their default settings
-o: output file (stdout)
-n: number of alignments to report (25)
-2: examine both strands - forward and reverse complement
</pre>

<p>glam2scan needs three pieces of information - the alphabet, a file
containing a motif found by glam2, and a file of sequences in FASTA
format:</p>

<pre>
glam2scan p prot_motif.glam2 lotsa_prots.fa
</pre>
<pre>
glam2scan n nuc_motif.glam2 lotsa_nucs.fa
</pre>

<p>An alphabet other than p or n is interpreted as the name of an <a
href="alphabet.html">alphabet file</a>.  Motif files from glam2 often
contain multiple motifs: glam2scan only considers the top one.</p>

<h2>Output format</h2>

<p>The output begins with some general information:</p>

<pre>
GLAM2scan
Version 9999

glam2scan p prot_motif.glam2 lotsa_prots.fa
</pre>

<p>This is followed by motif matches, sorted in order of score. A
motif match looks like this:</p>

<pre>
                 **.****
SOS1_HUMAN   780 HPIE.IA 785 + 8.70
</pre>

<p>The name of the sequence with the match appears on the left; the
start and end coordinates of the match appear on either side of the
matching sequence; the match score appears on the right. The plus sign
indicates the strand of the match (only meaningful when considering
both strands of nucleotide sequences with the -2 option). The stars
indicate the <em>key positions</em> of the motif: the alignment of the
match to the key positions is shown.</p>

<h2>Basic options</h2>

<ul>

<li>Use -o to write the output to a file rather than to the screen:
<pre>
glam2scan -o my_matches p prot_motif.glam2 lotsa_prots.fa
</pre>
</li>

<li>Use -n to specify how many matches to report:
<pre>
glam2scan -n 100 n nuc_motif.glam2 lotsa_nucs.fa
</pre>
Matches are sorted in order of score. If scores are tied, they are
sorted in alphabetical order of sequence name. If sequence names are
also identical, the order is arbitrary.</li>

<li>Use -2 to search both strands of nucleotide sequences:
<pre>
glam2scan -2 nuc_motif.glam2 lotsa_nucs.fa
</pre>
</li>

</ul>

<h2>Advanced options</h2>

<p>The remaining options are somewhat specialized. For typical usage,
it is reasonable to set them to exactly the same values as were used
with glam2 to discover the motif.</p>

<ul>

<li>Use -D to specify the deletion pseudocount.</li>

<li>Use -E to specify the 'no-deletion' pseudocount.</li>

<li>Use -I to specify the insertion pseudocount.</li>

<li>Use -J to specify the 'no-insertion' pseudocount.</li>

<li>Use -d to specify a <a href="dirichlet.html">Dirichlet mixture</a>
file.</li>

</ul>

<h2>Motif format</h2>

<p>Some users may wish to make 'fake' glam2 motifs for input to
glam2scan, for instance based on motifs found by other tools. Most of
the glam2 output is ignored by glam2scan, and a minimal motif file
looks like this:</p>

<pre>
                **..****
seq1         10 HP..D.IG
seq2          5 HPGADLIG
seq3          7 HP..ELIG
seq4          5 HP..ELLA
</pre>

<p>The sequence names and coordinates are ignored, but some
placeholder characters should be present. The stars indicating key
positions are necessary, and the first and last columns must be
starred.</p>

</body>
</html>