Mercurial > repos > nml > filter_stats
changeset 1:2fbea749a1d1 draft default tip
"planemo upload for repository https://github.com/phac-nml/snvphyl-galaxy commit 57067916cb7b9c5b65c1da59d4bbb846c3e3af2f"
author | nml |
---|---|
date | Tue, 23 Jun 2020 10:25:53 -0400 |
parents | 89c3ba37711c |
children | |
files | filter-stats.xml macros.xml |
diffstat | 2 files changed, 22 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/filter-stats.xml Tue Aug 27 12:31:08 2019 -0400 +++ b/filter-stats.xml Tue Jun 23 10:25:53 2020 -0400 @@ -1,8 +1,9 @@ -<tool id="filterstat" name="Filter Stats" version ="1.8.2"> +<tool id="filterstat" name="Filter Stats" version ="@VERSION@+galaxy1"> <description>Identify number of positions excluded based on filtered status</description> - <requirements> - <requirement type="package" version="1.8.2">snvphyl-tools</requirement> - </requirements> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> <command detect_errors="exit_code"> filter-stats.pl -i $tabfile #if $summary: @@ -43,6 +44,5 @@ **Options** - -all When this option is set, the summary will include all the entries marked as 'filtered-invalid' </help> -<citations> -</citations> + <expand macro="citations"/> </tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/macros.xml Tue Jun 23 10:25:53 2020 -0400 @@ -0,0 +1,16 @@ +<macros> + <token name="@VERSION@">1.8.2</token> + + <xml name="requirements"> + <requirements> + <requirement type="package" version="@VERSION@">snvphyl-tools</requirement> + <yield/> + </requirements> + </xml> + <xml name="citations"> + <citations> + <citation type="doi">10.1099/mgen.0.000116</citation> + <yield/> + </citations> + </xml> +</macros>