5
|
1 <tool id="fasta_to_fastq" name="FASTA to FASTQ" version="1.3">
|
0
|
2 <description>Convert a FASTA file to a FASTQ file</description>
|
|
3 <requirements>
|
|
4 <requirement type="package" version="1.79">biopython</requirement>
|
|
5 </requirements>
|
2
|
6 <stdio>
|
|
7 <exit_code range="1:" />
|
|
8 </stdio>
|
0
|
9 <command><![CDATA[
|
5
|
10 python '$__tool_directory__/fasta_to_fastq.py'
|
2
|
11 -i "$inputfile"
|
|
12 -s "$score"
|
|
13 -o "$output"
|
0
|
14 ]]>
|
|
15 </command>
|
|
16 <inputs>
|
|
17 <param type="data" name="inputfile" format="fasta" label="Input fasta file"/>
|
2
|
18 <param type="integer" name="score" label="Quality score (only positive int)" value="40"/>
|
0
|
19 </inputs>
|
|
20 <outputs>
|
2
|
21 <data name="output" format="fastq"/>
|
0
|
22 </outputs>
|
2
|
23 <help><![CDATA[
|
0
|
24 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.
|
|
25 ]]>
|
|
26 </help>
|
|
27 </tool> |