Mercurial > repos > nml > quasitools
diff complexity_bam.xml @ 9:18aad692772a draft default tip
planemo upload for repository https://github.com/phac-nml/quasitools commit 5a9e4c9a582828654893166caf20576f5e0c418e
author | nml |
---|---|
date | Mon, 20 Jun 2022 20:06:36 +0000 |
parents | 9def47f3c1e4 |
children |
line wrap: on
line diff
--- a/complexity_bam.xml Tue Aug 06 08:50:28 2019 -0400 +++ b/complexity_bam.xml Mon Jun 20 20:06:36 2022 +0000 @@ -1,12 +1,14 @@ -<tool id="complexity_bam" name="Complexity BAM" version="0.7.0"> - <requirements> - <requirement type="package" version="0.7.0">quasitools</requirement> - </requirements> +<tool id="complexity_bam" name="Complexity BAM" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@"> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> <command detect_errors="exit_code"><![CDATA[ - ln -f -s '${input_bam.metadata.bam_index}' '${input_bam}.bai' && + ln -s $input_bam '${input_bam.name}' && + ln -s $input_bam.metadata.bam_index '${input_bam.name}.bai' && - quasitools complexity bam '$ref_file' '$input_bam' $k -f '$filter_size' -o output.csv + quasitools complexity bam '$ref_file' '${input_bam.name}' $k -f '$filter_size' -o output.csv ]]></command> <inputs> @@ -44,14 +46,5 @@ ]]></help> - <citations> - <citation type="bibtex"> - @misc{GitHubquasitoolscomplexity, - title = {quasitools complexity}, - publisher = {phac-nml}, - journal = {GitHub repository}, - url = {https://github.com/phac-nml/quasitools}, - } - </citation> - </citations> + <expand macro="citations" /> </tool>