Mercurial > repos > iuc > hmmer_hmmscan
comparison nhmmscan.xml.orig @ 10:d546c74bdf0e draft default tip
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/hmmer3 commit e0d4688a59e6eeba33adcfe803ac43d0bc2863e7"
| author | iuc |
|---|---|
| date | Tue, 31 Aug 2021 08:45:19 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 9:98f5c06a4231 | 10:d546c74bdf0e |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <<<<<<< HEAD | |
| 3 <tool id="hmmer_nhmmscan" name="nhmmscan" version="@TOOL_VERSION@+galaxy1"> | |
| 4 <description>search DNA sequence(s) against a DNA profile database</description> | |
| 5 <macros> | |
| 6 <import>macros.xml</import> | |
| 7 </macros> | |
| 8 <expand macro="requirements"/> | |
| 9 <expand macro="stdio"/> | |
| 10 <command><![CDATA[ | |
| 11 @ADDTHREADS@ | |
| 12 ======= | |
| 13 <tool id="hmmer_nhmmscan" name="nhmmscan" version="@TOOL_VERSION@"> | |
| 14 <description>search DNA sequence(s) against a DNA profile database</description> | |
| 15 <expand macro="bio_tools"/> | |
| 16 <macros> | |
| 17 <import>macros.xml</import> | |
| 18 </macros> | |
| 19 <expand macro="requirements"/> | |
| 20 <expand macro="stdio"/> | |
| 21 <command><![CDATA[ | |
| 22 >>>>>>> c37d72558 (add more bio.tool IDs) | |
| 23 @INPUTHMMCHOICE@ | |
| 24 nhmmscan | |
| 25 | |
| 26 @OFORMAT_WITH_OPTS@ | |
| 27 @THRESHOLDS_NODOM@ | |
| 28 @CUT@ | |
| 29 @ACCEL_HEUR@ | |
| 30 --B1 $B1 | |
| 31 --B2 $B2 | |
| 32 --B3 $B3 | |
| 33 | |
| 34 @ADV_OPTS@ | |
| 35 @LENGTHS@ | |
| 36 @CPU@ | |
| 37 @SEED@ | |
| 38 | |
| 39 '$input_hmm_filename' | |
| 40 '$seqfile' | |
| 41 > '$output' | |
| 42 ]]></command> | |
| 43 <inputs> | |
| 44 <expand macro="input_hmm_choice" /> | |
| 45 <!-- todo use Galaxy features like data libraries/data tables/??? --> | |
| 46 <param name="seqfile" type="data" format="fasta" label="Sequence file"/> | |
| 47 <expand macro="oformat_with_opts_dfam_alisc"/> | |
| 48 <expand macro="thresholds_nodom"/> | |
| 49 <expand macro="cut"/> | |
| 50 <expand macro="accel_heur_xml"/> | |
| 51 | |
| 52 <param argument="--B1" type="integer" value="110" label="window length for biased-composition modifier (MSV)" /> | |
| 53 <param argument="--B2" type="integer" value="240" label="window length for biased-composition modifier (Vit)" /> | |
| 54 <param argument="--B3" type="integer" value="1000" label="window length for biased-composition modifier (Fwd)" /> | |
| 55 | |
| 56 <expand macro="adv_opts"/> | |
| 57 <expand macro="lengths"/> | |
| 58 <expand macro="seed"/> | |
| 59 </inputs> | |
| 60 <outputs> | |
| 61 <expand macro="output_dfam_alisc" tool="NHMMSCAN"/> | |
| 62 </outputs> | |
| 63 <tests> | |
| 64 <test expect_num_outputs="3"> | |
| 65 <param name="input_hmm_conditional|input_hmm_source" value="history"/> | |
| 66 <param name="input_hmm_conditional|hmmfile" value="MADE1.hmm"/> | |
| 67 <param name="seqfile" value="dna_target.fa"/> | |
| 68 <expand macro="oformat_test" /> | |
| 69 <expand macro="seed_test" /> | |
| 70 <output name="output" file="MADE1.nhmmscan_out" lines_diff="12"> | |
| 71 <expand macro="assert_out" tool="nhmmscan"/> | |
| 72 </output> | |
| 73 <output name="tblout" file="MADE1.nhmmscan_out.tblout" lines_diff="10"> | |
| 74 <!-- nhmmscan reports as hmmscan https://github.com/EddyRivasLab/hmmer/issues/190 --> | |
| 75 <expand macro="assert_tblout" tool="hmmscan"/> | |
| 76 </output> | |
| 77 <output name="dfamtblout" file="MADE1.nhmmscan_out.dfamtblout"> | |
| 78 <assert_contents> | |
| 79 <has_line_matching expression="# hit scores"/> | |
| 80 </assert_contents> | |
| 81 </output> | |
| 82 <!--not test because https://github.com/EddyRivasLab/hmmer/issues/190 <output name="aliscoresout" file="MADE1.nhmmscan_out.aliscoresout" lines_diff="10" />--> | |
| 83 </test> | |
| 84 </tests> | |
| 85 <help><![CDATA[ | |
| 86 @HELP_PRE@ | |
| 87 | |
| 88 nhmmscan is used to search nucleotide sequences against collections of | |
| 89 nucleotide profiles. For each sequence in <seqfile>, use that query sequence to | |
| 90 search the target database of profiles in <hmmfile>, and output ranked lists of | |
| 91 the profiles with the most significant matches to the sequence. | |
| 92 | |
| 93 The <seqfile> may contain more than one query sequence. It can be in FASTA | |
| 94 format, or several other common sequence file formats (genbank, embl, and | |
| 95 uniprot, among others), or in alignment file formats (stockholm, aligned fasta, | |
| 96 and others). See the --qformat option for a complete list. | |
| 97 | |
| 98 @HELP_PRE_OTH@ | |
| 99 | |
| 100 @OFORMAT_WITH_OPTS_N_HELP@ | |
| 101 @THRESHOLDS_NODOM_HELP@ | |
| 102 @CUT_HELP@ | |
| 103 @ACCEL_HEUR_HELP@ | |
| 104 @BIAS_COMP_HELP@ | |
| 105 @ADV_OPTS_HELP@ | |
| 106 @LENGTHS_HELP@ | |
| 107 @SEED_HELP@ | |
| 108 | |
| 109 | |
| 110 @ATTRIBUTION@ | |
| 111 ]]></help> | |
| 112 <expand macro="citation"/> | |
| 113 </tool> |
