Mercurial > repos > ecology > data_paper_from_eml
diff emldown_templates/taxonomic_coverage.xsl @ 0:cfe884e53600 draft default tip
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/main/tools-ecology/tools/make_data_paper_sketches commit 34f4e0604adc2a2ba4902ce6b8e6df2460eda292
author | ecology |
---|---|
date | Tue, 15 Oct 2024 20:33:48 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/emldown_templates/taxonomic_coverage.xsl Tue Oct 15 20:33:48 2024 +0000 @@ -0,0 +1,42 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:template name="taxonomic_coverage" match="/"> + <xsl:choose> + <xsl:when test=".//dataset/coverage/taxonomicCoverage"> + <h3>Taxonomic coverage</h3> + <div class="table-responsive"> + <table class="table table-striped"> + <tr> + <th>Rank</th> + <th>Value</th> + </tr> + <xsl:for-each select="//dataset/coverage/taxonomicCoverage/taxonomicClassification"> + <xsl:call-template name="loop"/> + </xsl:for-each> + </table> + </div> + </xsl:when> + </xsl:choose> + </xsl:template> + <xsl:template name="loop" match="/"> + <xsl:for-each select="taxonomicClassification"> + <xsl:choose> + <xsl:when test="descendant::taxonomicClassification"> + <xsl:call-template name="loop"/> + </xsl:when> + <xsl:otherwise> + <tr> + <td><xsl:value-of select="taxonRankName"/></td> + <td><xsl:value-of select="taxonRankValue"/></td> + </tr> + </xsl:otherwise> + </xsl:choose> + </xsl:for-each> + </xsl:template> +</xsl:stylesheet> + + + +