Mercurial > repos > iuc > seqtk
diff seqtk_dropse.xml @ 0:33ded39275c3 draft
Uploaded
| author | iuc |
|---|---|
| date | Wed, 18 Feb 2015 10:52:53 -0500 |
| parents | |
| children | 55e75a28fde7 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/seqtk_dropse.xml Wed Feb 18 10:52:53 2015 -0500 @@ -0,0 +1,76 @@ +<?xml version="1.0"?> +<tool id="seqtk_dropse" name="seqtk_dropse" version="@WRAPPER_VERSION@.0"> + <description>drop unpaired from interleaved Paired End FASTA/Q</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="requirements"/> + <expand macro="stdio"/> + <command><![CDATA[seqtk dropse + $in_file +> $default]]></command> + <inputs> + <expand macro="in_faq"/> + </inputs> + <outputs> + <data format_source="in_file" hidden="false" name="default" label="Only paired-end reads from $in_file.name"/> + </outputs> + <tests> + <test> + <param name="in_file" value="seqtk_dropse.fq"/> + <output name="default" file="seqtk_dropse.out" ftype="fastq"/> + </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> +</tool>
