Mercurial > repos > guerler > springsuite
comparison planemo/lib/python3.7/site-packages/galaxy/tool_util/xsd/README.md @ 1:56ad4e20f292 draft
"planemo upload commit 6eee67778febed82ddd413c3ca40b3183a3898f1"
author | guerler |
---|---|
date | Fri, 31 Jul 2020 00:32:28 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
0:d30785e31577 | 1:56ad4e20f292 |
---|---|
1 Galaxy-XSD | |
2 ========== | |
3 [![Build Status](https://travis-ci.org/JeanFred/Galaxy-XSD.svg)](http://travis-ci.org/JeanFred/Galaxy-XSD) | |
4 [![License](http://img.shields.io/badge/license-MIT-orange.svg?style=flat)](http://opensource.org/licenses/MIT) | |
5 | |
6 A Galaxy XML tool wrapper __XML schema definition__ (__XSD__) | |
7 | |
8 | |
9 | |
10 # History | |
11 | |
12 * Feb-2015 : Pierre Lindenbaum added doc, tests, Java-XML binding file (jxb) for java xml compiler (xjc) ( https://docs.oracle.com/cd/E19575-01/819-3669/bnbal/index.html ) | |
13 * 2013 : extraction to standalone and improvements by Jean-Fred | |
14 * 2011 : Initial work by John Chilton | |
15 | |
16 # Validating a `tool.xml` | |
17 | |
18 ```bash | |
19 $ xmllint --noout --schema galaxy.xsd tool.xml | |
20 ``` | |
21 | |
22 # Creating java code | |
23 | |
24 ```bash | |
25 $ ${JAVA_HOME}/bin/xjc -b galaxy.jxb galaxy.xsd | |
26 ``` | |
27 | |
28 | |
29 # Authors | |
30 | |
31 * Jean-Frédéric @JeanFred | |
32 * Pierre Lindenbaum @yokofakun | |
33 * John Chilton @jmchilton | |
34 | |
35 | |
36 # Licence | |
37 | |
38 This code is free software released under the terms of the MIT license. | |
39 | |
40 | |
41 # See also: | |
42 | |
43 * Galaxy https://usegalaxy.org/ | |
44 * Galaxy Tool XML File https://galaxyproject.org/admin/tools/tool-config-syntax/ | |
45 |