Mercurial > repos > iuc > hmmer_hmmscan
view hmmscan.xml @ 8:347a1f935f4c draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit 061757dd7b3bfe66b7738fd54bd6c5e135d9afe8
author | iuc |
---|---|
date | Mon, 06 Nov 2023 20:23:10 +0000 |
parents | be072920a53e |
children | 4a54e4c9188b |
line wrap: on
line source
<?xml version="1.0"?> <tool id="hmmer_hmmscan" name="hmmscan" version="@TOOL_VERSION@+galaxy1"> <description>search protein sequence(s) against a protein profile database</description> <macros> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements"/> <expand macro="stdio"/> <command><![CDATA[ @ADDTHREADS@ @INPUTHMMCHOICE@ hmmscan @OFORMAT_WITH_OPTS@ @THRESHOLDS@ @THRESHOLDS_DOM@ @ACCEL_HEUR@ @ADV_OPTS@ @CPU@ @SEED@ '$input_hmm_filename' '$seqfile' > '$output' ]]></command> <inputs> <expand macro="input_hmm_choice" /> <!-- todo use Galaxy features like data libraries/data tables/??? --> <param name="seqfile" type="data" format="fasta" label="Sequence file" help="Please note this file should have a length less than 100K."/> <expand macro="oformat_with_opts_dom_pfam"/> <expand macro="thresholds_cut_dom_xml"/> <expand macro="accel_heur_xml"/> <expand macro="adv_opts"/> <expand macro="seed"/> </inputs> <outputs> <expand macro="output_dom_pfam" tool="HMMSCAN"/> </outputs> <tests> <test expect_num_outputs="4"> <param name="input_hmm_conditional|input_hmm_source" value="history"/> <param name="input_hmm_conditional|hmmfile" value="MADE1.hmm"/> <param name="seqfile" value="dna_target2.fa"/> <expand macro="oformat_test" /> <expand macro="seed_test" /> <output name="output" file="MADE1.out" lines_diff="24"> <expand macro="assert_out" tool="hmmscan"/> </output> <output name="tblout" file="MADE1.out.tblout" lines_diff="14"> <expand macro="assert_tblout" tool="hmmscan"/> </output> <output name="domtblout" file="MADE1.out.domtblout" lines_diff="10"> <expand macro="assert_tblout" tool="hmmscan"/> </output> <output name="pfamtblout" file="MADE1.out.pfamtblout" lines_diff="10"> <expand macro="assert_tblout" tool="hmmscan"/> </output> </test> </tests> <help><![CDATA[ @HELP_PRE@ hmmscan is used to search protein sequences against collections of protein profiles. For each sequence in <seqfile>, use that query sequence to search the target database of profiles in <hmmfile>, and output ranked lists of the profiles with the most significant matches to the sequence. @HELP_PRE_OTH@ @OFORMAT_WITH_OPTS_HELP@ @THRESHOLDS_HELP@ @CUT_HELP@ @ACCEL_HEUR_HELP@ @ADV_OPTS_HELP@ @SEED_HELP@ @ATTRIBUTION@ ]]></help> <expand macro="citation"/> </tool>