comparison fasta2fastq.xml @ 0:8ab09593f2eb draft default tip

planemo upload commit ee4a8e6cf290e6c8a4d55f9cd2839d60ab3b11c8
author mheinzl
date Wed, 07 Oct 2020 18:48:40 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:8ab09593f2eb
1 <?xml version="1.0" encoding="UTF-8"?>
2 <tool id="fasta2fastq" name="FASTA-to-FASTQ" version="1.0.0" profile="19.01">
3 <description>Convert a FASTA file to a FASTQ file</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <command><![CDATA[
8 python '$__tool_directory__/fasta2fastq.py'
9 -i '$file1'
10 -o '$file2'
11 -s '$score'
12 ]]>
13 </command>
14 <inputs>
15 <param name="file1" type="data" format="fasta" label="FASTA file" optional="false"/>
16 <param name="score" type="integer" label="Quality score" value="40" help="Quality score for each base in all reads. Default = 40."/>
17 </inputs>
18 <outputs>
19 <data name="file2" format="fastq" label="${tool.name} on ${on_string}: FASTQ"/>
20 </outputs>
21 <tests>
22 <test>
23 <param name="file1" value="Reads_in.fasta"/>
24 <output name="file2" file="Reads_out.fastq"/>
25 <param name="score" value="40"/>
26 </test>
27 </tests>
28 <help> <![CDATA[
29 **What it does**
30
31 Takes a FASTA file and converts it to a FASTQ file by adding a static quality score. The default quality score for each base in all reads is 40.
32
33 ]]>
34 </help>
35 <expand macro="citation" />
36 </tool>