Last change
on this file since 1938 was
1938,
checked in by Nicklas Nordborg, 17 years ago
|
Added QuantArray? raw data types
Added some intensity formulas to other raw data types
Added MAGE files describing raw data types
|
File size:
1.5 KB
|
Line | |
---|
1 | <?xml version='1.0' encoding='utf-8' ?> |
---|
2 | <xsl:stylesheet |
---|
3 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
---|
4 | <xsl:output method="html"/> |
---|
5 | |
---|
6 | <!-- |
---|
7 | |
---|
8 | XSL stylesheet for displaying Audit and Security Package from MAGE-ML documents |
---|
9 | |
---|
10 | Author: Philippe Rocca-Serra (rocca@ebi.ac.uk) |
---|
11 | |
---|
12 | --> |
---|
13 | |
---|
14 | |
---|
15 | <xsl:template match="/"> |
---|
16 | <h3><u>Quantitation Types</u></h3> |
---|
17 | <table border="1"> |
---|
18 | <tr> |
---|
19 | <th>Identifier</th> |
---|
20 | <th>is Background</th> |
---|
21 | <th>Description</th> |
---|
22 | <th>Channel</th> |
---|
23 | <th>Scale</th> |
---|
24 | <th>Data Type</th> |
---|
25 | |
---|
26 | </tr> |
---|
27 | |
---|
28 | <xsl:for-each select="//DerivedSignal | //MeasuredSignal | //PresentAbsent | //PValue | //Ratio | //SpecializedQuantitationType"> |
---|
29 | |
---|
30 | <tr> |
---|
31 | <td><i><b> |
---|
32 | <xsl:value-of select="@identifier"/></b></i> |
---|
33 | </td> |
---|
34 | <td><i><b> |
---|
35 | <xsl:value-of select="@isBackground"/></b></i> |
---|
36 | </td> |
---|
37 | |
---|
38 | |
---|
39 | |
---|
40 | <td><span style="color:#111fff"> |
---|
41 | <xsl:value-of select="child::Descriptions_assnlist/Description/@text"/> |
---|
42 | </span><br/> |
---|
43 | </td> |
---|
44 | |
---|
45 | |
---|
46 | |
---|
47 | |
---|
48 | <td><span style="color:#111fff"> |
---|
49 | <xsl:value-of select="child::Channel_assnref/Channel_ref/@identifier"/> |
---|
50 | </span><br/> |
---|
51 | </td> |
---|
52 | |
---|
53 | |
---|
54 | <td><span style="color:#111fff"> |
---|
55 | <xsl:value-of select="child::Scale_assn/OntologyEntry/@value"/> |
---|
56 | </span><br/> |
---|
57 | </td> |
---|
58 | |
---|
59 | |
---|
60 | <td><span style="color:#111fff"> |
---|
61 | <xsl:value-of select="child::DataType_assn/OntologyEntry/@value"/> |
---|
62 | </span><br/> |
---|
63 | </td> |
---|
64 | |
---|
65 | </tr> |
---|
66 | </xsl:for-each> |
---|
67 | </table> |
---|
68 | </xsl:template> |
---|
69 | </xsl:stylesheet> |
---|
Note: See
TracBrowser
for help on using the repository browser.