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
|
<?xml version="1.0" encoding="utf-8"?>
<!-- AUTHOR: Chris Mungall cjm at fruitfly dot org -->
<!-- remove features with is_analysis="true" -->
<!-- NOT TESTED -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output indent="yes" method="xml"/>
<xsl:strip-space elements="*"/>
<!-- match everything -->
<xsl:template match="/ | @* | node()">
<xsl:choose>
<xsl:when test="is_analysis='true'">
<!-- ignore this element -->
</xsl:when>
<xsl:otherwise>
<!-- recursively apply this same template again -->
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
|