This file is indexed.

/usr/lib/R/site-library/ShortRead/template/5000-PerTile.html is in r-bioc-shortread 1.36.0-1.

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
<h2>Tile Performance</h2>
<a name="Tile-Performance"></a>

<p>
  Counts per tile. Dashed red line indicates the 10&#37; of tiles with
  fewest reads. An approximately uniform distribution suggests
  consistent read representation in each tile. Distinct separation of
  'good' versus poor quality tiles might suggest systematic failure,
  e.g., of many tiles in a lane, or excessive variability (e.g., due
  to unintended differences in sample DNA concentration) in read
  number per lane.
</p> 
<pre>
  perTile <- qa[["perTile"]]
  readCnt <- perTile[["readCounts"]]
  cnts <- readCnt[readCnt$type=="read", "count"]
  histogram(cnts, breaks=40, xlab="Reads per tile",
            panel=function(x, ...) {
            panel.abline(v=quantile(x, .1),
                col="red", lty=2)
                panel.histogram(x, ...)
            }, col="white"))
</pre>
@PER_TILE_HISTOGRAM@

<p>
  Spatial counts per tile. Divisions on the color scale are quantized,
  so that the range of counts per tile is divided into 10 equal
  increments. Parenthetic numbers on the scale represent the break
  points of the quantized values. Because the scale is quantized, some
  tiles will necessarily have `few' reads and other necessarily `many'
  reads.
</p>

<p>
  Consistent differences in read number per lane will result in some
  lanes being primarily one color, other lanes primarily another
  color.  Genome Analyzer data typically have greatest read counts in
  the center column of each lane. There are usually consistent
  gradients from `top' to `bottom' of each column.
</p>

<p>
  Low count numbers in the same tile across runs of the same flow cell
  may indicate instrumentation issues. HiSeq: columns are upper swaths 1 and 2,
  and lower swaths 1 and 2, respectively.
</p>

<pre>
  ShortRead:::.plotTileCounts(readCnt[readCnt$type=="read",])
</pre>
@PER_TILE_COUNT_FIGURE@
 
<p>
Median read quality score per tile. Divisions on the color scale are
quantized, so that the range of average quality scores per tile is
divided into 10 equal increments. Parenthetic numbers on the scale
represent the break points of the quantized values.
</p>

<p>
  Often, quality and count show an inverse relation. HiSeq: columns
  are upper swaths 1 and 2, and lower swaths 1 and 2, respectively.
</p>
<pre>
  qscore <- perTile[["medianReadQualityScore"]]
  ShortRead:::.plotTileQualityScore(qscore[qscore$type=="read",])
</pre>
@PER_TILE_QUALITY_FIGURE@