Mercurial > repos > veg > mmvc
comparison mmvc.xml @ 0:a3f7993dca52 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mmvc/ commit d4006c1381bdece9d754bdfebb80efb61040d6e9-dirty
| author | veg |
|---|---|
| date | Wed, 18 Apr 2018 16:28:28 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:a3f7993dca52 |
|---|---|
| 1 <?xml version="1.0"?> | |
| 2 <tool id="mmvc" version="1.0.2" name="mmvc"> | |
| 3 <description>Multinomial mixture variant caller</description> | |
| 4 <requirements> | |
| 5 <requirement type="package" version="1.0.2">mmvc</requirement> | |
| 6 </requirements> | |
| 7 <stdio> | |
| 8 <exit_code range="1:"/> | |
| 9 </stdio> | |
| 10 <version_command/> | |
| 11 <command><![CDATA[ | |
| 12 mmvc -j '$json_report' -f '$filter_msa' | |
| 13 #if str($options.advanced) == 'advanced': | |
| 14 -g $options.grid_density -c $options.chain_length -b $options.burnin_fraction -t $options.target_rate -p $options.posterior_threshold | |
| 15 #end if | |
| 16 '$input_fasta' | |
| 17 ]]></command> | |
| 18 <inputs> | |
| 19 <param name="input_fasta" label="Input FASTA" type="data" format="fasta"/> | |
| 20 <conditional name="options"> | |
| 21 <param label="Additional options" name="advanced" type="select"> | |
| 22 <option value="defaults">Use defaults</option> | |
| 23 <option value="advanced">Specify additional parameters</option> | |
| 24 </param> | |
| 25 <when value="defaults"/> | |
| 26 <when value="advanced"> | |
| 27 <param label="GRID_DENSITY" name="grid_density" type="integer" value="10"/> | |
| 28 <param label="CHAIN_LENGTH" name="chain_length" type="integer" value="2000000"/> | |
| 29 <param label="BURNIN_FRACTION" name="burnin_fraction" type="float" value="0.5"/> | |
| 30 <param label="TARGET_RATE" name="target_rate" type="float" value="0.01"/> | |
| 31 <param label="POSTERIOR_THRESHOLD" name="posterior_threshold" type="float" value="0.95"/> | |
| 32 </when> | |
| 33 </conditional> | |
| 34 </inputs> | |
| 35 <outputs> | |
| 36 <data format="json" name="json_report"/> | |
| 37 <data format="fasta" name="filter_msa"/> | |
| 38 </outputs> | |
| 39 <tests> | |
| 40 <test> | |
| 41 <param name="input_fasta" value="mmvc-in1.fa"/> | |
| 42 <param name="advanced" value="advanced"/> | |
| 43 <param name="chain_length" value="200"/> | |
| 44 <output name="json_report"> | |
| 45 <assert_contents> | |
| 46 <has_text text="variant"/> | |
| 47 <has_text text="weight"/> | |
| 48 </assert_contents> | |
| 49 </output> | |
| 50 </test> | |
| 51 </tests> | |
| 52 <help><![CDATA[ | |
| 53 | |
| 54 MMVC | |
| 55 ---- | |
| 56 Multinomial mixture variant caller | |
| 57 | |
| 58 ]]></help> | |
| 59 <citations> | |
| 60 <citation type="bibtex"> | |
| 61 @UNPUBLISHED{spond, | |
| 62 author = "Sergei Kosakovsky Pond", | |
| 63 title = "HyPhy: Hypothesis Testing using Phylogenies", | |
| 64 year = "2000", | |
| 65 note = "http://hyphy.org/", | |
| 66 url = "http://hyphy.org/"} | |
| 67 </citation> | |
| 68 </citations> | |
| 69 </tool> |
