annotate gsaf_download.xml @ 3:ba70ea57cef9 draft

Removed testing code
author eric-rasche
date Fri, 05 Dec 2014 14:34:49 -0500
parents 9bbff491ddc9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
1 <?xml version="1.0"?>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
2 <tool id="edu.tamu.cpt.gsaf.download" name="GSAF Download" version="1.0.0">
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
3 <description>downloads data from UT's GSAF</description>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
4 <stdio>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
5 <exit_code level="fatal" range="1:"/>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
6 </stdio>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
7 <command interpreter="python">
2
9bbff491ddc9 Fixed typo on script name
eric-rasche
parents: 1
diff changeset
8 gsaf_download.py "$url" ${data.id} > $data
1
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
9 </command>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
10 <inputs>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
11 <param help="This link should be in an email from them, right click and [Copy Link Location]" label="GSAF URL" name="url" type="text" value="http://gsaf.s3.amazonaws.com/...">
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
12 <sanitizer>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
13 <valid initial="string.printable">
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
14 <remove value="&apos;"/>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
15 <remove value="&quot;"/>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
16 </valid>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
17 </sanitizer>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
18 </param>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
19 </inputs>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
20 <outputs>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
21 <data format="fastq" name="data">
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
22 <discover_datasets pattern="__designation__" ext="fastq" directory="output" visible="true" />
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
23 </data>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
24 </outputs>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
25 <help>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
26 GSAF Fetcher
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
27 =======================
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
28
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
29 Basic wrapper around GSAF's tool to download data.
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
30 </help>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
31 <tests/>
3aab9c21be3e Added tool XML
eric-rasche
parents:
diff changeset
32 </tool>