comparison tools/clinod/clinod.xml @ 4:4d9a4a43861b draft

Uploaded v0.0.7, uses $GALAXY_SLOTS and embeds citation in tool XML.
author peterjc
date Thu, 20 Nov 2014 06:15:49 -0500
parents 6a9debe4b860
children 9485cdfca57e
comparison
equal deleted inserted replaced
3:6a9debe4b860 4:4d9a4a43861b
1 <tool id="clinod" name="Nucleolar localization sequence Detector (NoD)" version="0.0.5"> 1 <tool id="clinod" name="Nucleolar localization sequence Detector (NoD)" version="0.0.7">
2 <description>Find nucleolar localization signals (NoLSs) in protein sequences</description> 2 <description>Find nucleolar localization signals (NoLSs) in protein sequences</description>
3 <requirements> 3 <requirements>
4 <requirement type="binary">java</requirement> 4 <requirement type="binary">java</requirement>
5 <requirement type="package" version="1.3">clinod</requirement> 5 <requirement type="package" version="1.3">clinod</requirement>
6 </requirements> 6 </requirements>
7 <command> 7 <command>
8 ##The Galaxy Tool Shed installation should define $CLINOD to point at folder 8 ##The Galaxy Tool Shed installation should define $CLINOD to point at folder
9 ##containing both clinod-1.3.jar and the batchman binary: 9 ##containing both clinod-1.3.jar and the batchman binary:
10 java -jar \$CLINOD/clinod-1.3.jar -in="$fasta_file" -out="$tabular_file" -t=2 -f=MEDIUM_TAB -nonols -clean_sequence 10 java -jar \$CLINOD/clinod-1.3.jar -in="$fasta_file" -out="$tabular_file" -t="\$GALAXY_SLOTS" -f=MEDIUM_TAB -nonols -clean_sequence
11 ##I want the number of threads to be a Galaxy config option...
12 ##TODO - Make the -clean_sequence argument a parameter? 11 ##TODO - Make the -clean_sequence argument a parameter?
13 </command> 12 </command>
14 <stdio> 13 <stdio>
15 <!-- Assume anything other than zero is an error --> 14 <!-- Assume anything other than zero is an error -->
16 <exit_code range="1:" /> 15 <exit_code range="1:" />
23 <data name="tabular_file" format="tabular" label="NoD results" /> 22 <data name="tabular_file" format="tabular" label="NoD results" />
24 </outputs> 23 </outputs>
25 <tests> 24 <tests>
26 <test> 25 <test>
27 <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta" /> 26 <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta" />
28 <output name="tabular_file" file="four_human_proteins.clinod-1.3.tabular" ftype="tabular" /> 27 <output name="tabular_file" file="four_human_proteins.clinod-1.3.tabular" ftype="tabular" />
29 </test> 28 </test>
30 </tests> 29 </tests>
31 <help> 30 <help>
32 31
33 **What it does** 32 **What it does**
80 79
81 This wrapper is available to install into other Galaxy Instances via the Galaxy 80 This wrapper is available to install into other Galaxy Instances via the Galaxy
82 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/clinod 81 Tool Shed at http://toolshed.g2.bx.psu.edu/view/peterjc/clinod
83 82
84 </help> 83 </help>
84 <citations>
85 <citation type="doi">10.7717/peerj.167</citation>
86 <citation type="doi">10.1093/nar/gkq653</citation>
87 <citation type="doi">10.1186/1471-2105-12-317</citation>
88 </citations>
85 </tool> 89 </tool>