view sam_to_fastq.xml @ 1:8acb72264319 draft default tip

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/sam_to_fastq commit 55671fc041c29c7985cbb44e6b49a10e1889f907
author drosofff
date Mon, 21 Mar 2016 18:03:40 -0400
parents 55107d4a728c
children
line wrap: on
line source

<tool id="sam_to_fastq" name="SAM to FASTQ" version="0.1">
  <description></description>
  <command interpreter="python">sam_to_fastq.py --input $input --output $output</command>
  <inputs>
       <param name="input" type="data" format="sam" label="SAM file for extraction of aligned reads in FASTQ format"/>
   </inputs>

 <outputs>
   <data format="fastqsanger" name="output" label="FASTQ extraction" />
</outputs>

    <tests>
        <test>
            <param ftype="sam" name="input" value="input.sam" />
            <output file="output.fastq" name="output" />
        </test>
    </tests>


<help>

**What it does**

Extract sequence and sequence quality of aligned reads in a SAM alignment file and return a FASTQ file containing those reads

</help>

</tool>