Mercurial > repos > devteam > ncbi_blast_plus
view tools/ncbi_blast_plus/ncbi_tblastx_wrapper.xml @ 59:491dc0cd6a0d draft default tip
planemo upload for repository https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus commit eb397ba9bd3d2f3db13757f3bce094a89c4de9b3
author | peterjc |
---|---|
date | Wed, 26 Mar 2025 16:42:53 +0000 |
parents | 17f84d08f5a6 |
children |
line wrap: on
line source
<tool id="ncbi_tblastx_wrapper" name="NCBI BLAST+ tblastx" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> <description>Search translated nucleotide database with translated nucleotide query sequence(s)</description> <macros> <token name="@BINARY@">tblastx</token> <import>ncbi_macros.xml</import> </macros> <expand macro="preamble" /> <command detect_errors="aggressive"><![CDATA[ ## The command is a Cheetah template which allows some Python based syntax. ## Lines starting hash hash are comments. Galaxy will turn newlines into spaces tblastx @QUERY@ @BLAST_DB_SUBJECT@ -query_gencode $query_gencode -evalue $evalue_cutoff @BLAST_OUTPUT@ @THREADS@ #if $adv_opts.adv_opts_selector=="advanced": -db_gencode $adv_opts.db_gencode $adv_opts.strand @ADV_MATRIX@ @ADV_FILTER_QUERY@ @ADV_MAX_HITS@ @ADV_WORD_SIZE@ @ADV_ID_LIST_FILTER@ @ADV_QCOV_HSP_PERC@ @ADV_THRESHOLD@ ## End of advanced options: #end if ]]></command> <inputs> <expand macro="nucl_query" /> <expand macro="input_conditional_nucleotide_db" /> <expand macro="input_query_gencode" /> <expand macro="input_evalue" /> <expand macro="input_out_format" /> <expand macro="advanced_options"> <expand macro="input_db_gencode" /> <!-- Could use a select (yes, no, other) where other allows setting 'window locut hicut' --> <expand macro="input_filter_query_default_true" /> <expand macro="input_strand" /> <expand macro="input_scoring_matrix" /> <expand macro="input_max_hits" /> <!-- I'd like word_size to be optional, with minimum 2 for tblastx --> <expand macro="input_word_size" /> <expand macro="input_parse_deflines" /> <expand macro="advanced_optional_id_files" /> <expand macro="input_qcov_hsp_perc" /> <expand macro="input_threshold" /> </expand> </inputs> <outputs> <data name="output1" format="tabular" label="tblastx $query.name vs @ON_DB_SUBJECT@"> <expand macro="output_change_format" /> </data> </outputs> <tests> <test> <param name="query" value="rhodopsin_nucs.fasta" ftype="fasta" /> <conditional name="db_opts"> <param name="db_opts_selector" value="file" /> <param name="database" value="" /> <param name="subject" value="three_human_mRNA.fasta" ftype="fasta" /> </conditional> <param name="evalue_cutoff" value="1e-40" /> <conditional name="output"> <param name="out_format" value="6" /> </conditional> <conditional name="adv_opts"> <param name="adv_opts_selector" value="basic" /> </conditional> <output name="output1" file="tblastx_rhodopsin_vs_three_human.tabular" ftype="tabular" /> </test> </tests> <help> @SEARCH_TIME_WARNING@ **What it does** Search a *translated nucleotide database* using a *translated nucleotide query*, using the NCBI BLAST+ tblastx command line tool. @FASTA_WARNING@ ----- @OUTPUT_FORMAT@ ------- @CLI_OPTIONS@ </help> <expand macro="blast_citations" /> </tool>