comparison env/lib/python3.9/site-packages/galaxy/tool_util/xsd/README.md @ 0:4f3585e2f14b draft default tip

"planemo upload commit 60cee0fc7c0cda8592644e1aad72851dec82c959"
author shellac
date Mon, 22 Mar 2021 18:12:50 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:4f3585e2f14b
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