Mercurial > repos > iuc > bctools_remove_tail
view remove_tail.xml @ 2:654675e1e7c9 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 758b42538f722759e7b5414f64c9a7973cc221b4"
| author | iuc |
|---|---|
| date | Wed, 25 Dec 2019 16:38:00 +0000 |
| parents | 6442d25062bf |
| children | db036b7d9201 |
line wrap: on
line source
<tool id="bctools_remove_tail" name="Remove 3'-end nts" version="@VERSION@"> <description>from FASTQ</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <command detect_errors="exit_code"><![CDATA[ remove_tail.py '$reads_fastq' '$length' > '$default' ]]></command> <inputs> <param name="reads_fastq" type="data" format="fastq" label="FASTQ file"/> <param name="length" type="integer" value="0" label="Remove this many nucleotides"/> </inputs> <outputs> <data name="default" format="fastq"/> </outputs> <tests> <test> <param name="reads_fastq" value="readswithtail.fastq"/> <param name="length" value="7"/> <output name="default" file="readswithtailremoved.fastq"/> </test> </tests> <help><![CDATA[ bctools - Remove 3'-end nts from FASTQ ====================================== Remove a certain number of nucleotides from the 3'-tails of sequences in FASTQ format. ]]></help> <expand macro="citations"/> </tool>
