This file is indexed.

/usr/share/ray/scripts/xsl-xml/Terms-to-tsv.xsl is in ray-extra 2.3.0-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
<?xml version="1.0" encoding="UTF-8"?>

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output method="text" indent="yes" encoding="utf-8" standalone="yes"/>
<xsl:template match="/">

	<xsl:text>Identifier	Name	Proportion
</xsl:text>
      <xsl:for-each select="root/geneOntologyTerm">

        <xsl:sort data-type="number" order="descending" select="proportion" />

<xsl:if test="proportion/text() != '0'">

<xsl:value-of select="identifier"/>
	<xsl:text>	</xsl:text>
<xsl:value-of select="name"/>
	<xsl:text>	</xsl:text>
          	<xsl:value-of select="proportion"/>
	<xsl:text>
</xsl:text>

</xsl:if>

      </xsl:for-each>
</xsl:template>

</xsl:stylesheet>