Mercurial > repos > iuc > seqtk
view seqtk_dropse.xml @ 11:8511b6d85fc7 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/seqtk commit c819f01ae147fb23a1e5e91cee3626b6a19b9e03
| author | iuc |
|---|---|
| date | Wed, 09 Jul 2025 19:23:11 +0000 |
| parents | 4b494533146a |
| children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="seqtk_dropse" name="seqtk_dropse" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="22.05"> <description>drop unpaired from interleaved Paired End FASTA/Q</description> <macros> <import>macros.xml</import> </macros> <expand macro="bio_tools"/> <expand macro="requirements"/> <expand macro="stdio"/> <command><![CDATA[ seqtk dropse '$in_file' @CONDITIONAL_GZIP_OUT@ ]]></command> <inputs> <expand macro="in_faq"/> </inputs> <outputs> <data name="default" format_source="in_file" label="${tool.name} on ${on_string}: only paired-end reads"/> </outputs> <tests> <test> <param name="in_file" value="seqtk_dropse.fq" ftype="fastqsanger"/> <output name="default" file="seqtk_dropse.out" ftype="fastqsanger"/> </test> <test> <param name="in_file" value="seqtk_dropse.fq.gz" ftype="fastqsanger.gz"/> <output name="default" file="seqtk_dropse.out.gz" ftype="fastqsanger.gz"/> </test> </tests> <help><![CDATA[ **What it does** Remove unpaired reads in an interleaved paired-end FASTA/Q file. Given a fastq file with unpaired reads: :: @test-6/1 AGCTTGACGC + ?.HCF@C>>F @test-6/2 TGCGAAGACC + >2?A?A@@7? @test-4/1 CTTGACGCTG + I@>3EFCG@C @test-2/1 AGACCAAAAT + ??><6E?IFC @test-2/2 CTGGCGAATT + ?=?*?A?<?@ This tool will remove the offending reads (test-4/1), leaving just the paired data. :: @test-6/1 AGCTTGACGC + ?.HCF@C>>F @test-6/2 TGCGAAGACC + >2?A?A@@7? @test-2/1 AGACCAAAAT + ??><6E?IFC @test-2/2 CTGGCGAATT + ?=?*?A?<?@ @ATTRIBUTION@ ]]></help> <expand macro="citation" /> </tool>
