comparison sqlite_to_tabular.xml @ 21:357fe86f245d draft

Uploaded
author jjohnson
date Fri, 14 Jul 2017 17:34:22 -0400
parents ab27c4bd14b9
children bed5018e7ae3
comparison
equal deleted inserted replaced
20:ab27c4bd14b9 21:357fe86f245d
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 <tool id="sqlite_to_tabular" name="SQLite to tabular" version="5.0.0"> 2 <tool id="sqlite_to_tabular" name="SQLite to tabular" version="1.0.0">
3 <description>for SQL query</description> 3 <description>for SQL query</description>
4 4
5 <macros> 5 <macros>
6 <import>macros.xml</import> 6 <import>macros.xml</import>
7 </macros> 7 </macros>
8 8
9 <stdio> 9 <command detect_errors="exit_code"><![CDATA[
10 <exit_code range="1:" level="fatal" description="Error" /> 10 python '$__tool_directory__/sqlite_to_tabular.py'
11 </stdio> 11 --sqlitedb='$sqlitedb'
12 <command><![CDATA[ 12 --query_file='$query_file'
13 python $__tool_directory__/sqlite_to_tabular.py
14 --sqlitedb="$sqlitedb"
15 --query_file="$query_file"
16 $no_header 13 $no_header
17 --output="$query_results" 14 --output='$query_results'
18 ]]></command> 15 ]]></command>
19 <configfiles> 16 <configfiles>
20 <configfile name="query_file"> 17 <configfile name="query_file">
21 $sqlquery 18 $sqlquery
22 </configfile> 19 </configfile>