comparison tools/ncbi_blast_plus/ncbi_blastn_wrapper.xml @ 4:9d5beacae92b draft

Uploaded v0.0.13 which uses the recently added error handling. No longer bundles the hide_stderr.py script which is now redundant.
author peterjc
date Wed, 19 Sep 2012 13:08:31 -0400
parents 643338ac83c0
children 393a7a35383c
comparison
equal deleted inserted replaced
3:643338ac83c0 4:9d5beacae92b
1 <tool id="ncbi_blastn_wrapper" name="NCBI BLAST+ blastn" version="0.0.12"> 1 <tool id="ncbi_blastn_wrapper" name="NCBI BLAST+ blastn" version="0.0.13">
2 <description>Search nucleotide database with nucleotide query sequence(s)</description> 2 <description>Search nucleotide database with nucleotide query sequence(s)</description>
3 <!-- If job splitting is enabled, break up the query file into parts --> 3 <!-- If job splitting is enabled, break up the query file into parts -->
4 <parallelism method="multi" split_inputs="query" split_mode="to_size" split_size="1000" shared_inputs="subject" merge_outputs="output1"></parallelism> 4 <parallelism method="multi" split_inputs="query" split_mode="to_size" split_size="1000" shared_inputs="subject" merge_outputs="output1"></parallelism>
5 <version_command>blastn -version</version_command> 5 <version_command>blastn -version</version_command>
6 <command interpreter="python">hide_stderr.py 6 <command>
7 ## The command is a Cheetah template which allows some Python based syntax. 7 ## The command is a Cheetah template which allows some Python based syntax.
8 ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces 8 ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces
9 blastn 9 blastn
10 -query "$query" 10 -query "$query"
11 #if $db_opts.db_opts_selector == "db": 11 #if $db_opts.db_opts_selector == "db":
37 $adv_opts.ungapped 37 $adv_opts.ungapped
38 $adv_opts.parse_deflines 38 $adv_opts.parse_deflines
39 ## End of advanced options: 39 ## End of advanced options:
40 #end if 40 #end if
41 </command> 41 </command>
42 <stdio>
43 <exit_code range="1:" />
44 <exit_code range="://0" />
45 </stdio>
42 <inputs> 46 <inputs>
43 <param name="query" type="data" format="fasta" label="Nucleotide query sequence(s)"/> 47 <param name="query" type="data" format="fasta" label="Nucleotide query sequence(s)"/>
44 <conditional name="db_opts"> 48 <conditional name="db_opts">
45 <param name="db_opts_selector" type="select" label="Subject database/sequences"> 49 <param name="db_opts_selector" type="select" label="Subject database/sequences">
46 <option value="db" selected="True">BLAST Database</option> 50 <option value="db" selected="True">BLAST Database</option>