annotate paired_bam_dealer.xml @ 4:881a24a35480

planemo upload commit b'f16e028df365af5bc6b4b441152d278a55e40ffe\n'-dirty
author jpayne
date Wed, 06 Dec 2017 16:41:46 -0500
parents b7bbe08d50df
children 55df0d1c6365
rev   line source
jpayne@0 1 <tool id="paired_bam_dealer" name="Deal out" version="0.1.0">
jpayne@0 2 <description>paired-end reads by alignment or non-alignment to a reference</description>
jpayne@0 3 <requirements>
jpayne@4 4 <requirement type="package" version="1.5">samtools</requirement>
jpayne@4 5 <requirement type="package" version="2.26">bedtools</requirement>
jpayne@0 6 </requirements>
jpayne@0 7 <command detect_errors="exit_code"><![CDATA[
jpayne@4 8 which -a samtools ; ldd `which samtools`
jpayne@0 9 ]]></command>
jpayne@0 10 <inputs>
jpayne@0 11 <param format="bam" name="input_bam" type="data" label="BAM alignment" />
jpayne@0 12 </inputs>
jpayne@0 13 <outputs>
jpayne@0 14 <data format="fastqsanger" label="unmapping reads, reverse" name="unmapped_2" />
jpayne@0 15 <data format="fastqsanger" label="unmapping reads, forward" name="unmapped_1" />
jpayne@0 16 <data format="fastqsanger" label="mapping reads, reverse" name="mapped_2" />
jpayne@0 17 <data format="fastqsanger" label="mapping reads, forward" name="mapped_1" />
jpayne@0 18 </outputs>
jpayne@0 19 <tests>
jpayne@0 20 <test>
jpayne@0 21 <param name="input_bam" value="mapped_reads.bam" />
jpayne@0 22 <output name="mapped_1" value="forward_mapped.fastq" />
jpayne@0 23 <output name="mapped_2" value="reverse_mapped.fastq" />
jpayne@0 24 <output name="unmapped_1" value="forward_unmapped.fastq" />
jpayne@0 25 <output name="unmapped_2" value="reverse_unmapped.fastq" />
jpayne@0 26 </test>
jpayne@0 27 </tests>
jpayne@0 28 <help><![CDATA[
jpayne@0 29 Input is a BAM alignment of paired-end reads to a reference. Output is paired-end files of reads mapping and reads not mapping to reference.
jpayne@0 30 ]]></help>
jpayne@0 31
jpayne@0 32 <citations>
jpayne@0 33 </citations>
jpayne@0 34 </tool>