0
|
1 <tool id="fasta_to_fastq" name="FASTA to FASTQ" version="1.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>
|
|
6 <command><![CDATA[
|
|
7 python '$__tool_directory__/fasta2fastq.py'
|
|
8 -i "$inputfile"
|
|
9 -s "$score"
|
|
10 -o "$output"
|
|
11 ]]>
|
|
12 </command>
|
|
13 <inputs>
|
|
14 <param type="data" name="inputfile" format="fasta" label="Input fasta file"/>
|
|
15 <param type="integer" name="score" label="Quality score" value="40" help="Quality score you wanted for each base in all reads. (default: 40)"/>
|
|
16 </inputs>
|
|
17 <outputs>
|
|
18 <data name="output" format="fastq" label="${tool.name} on ${on_string}"/>
|
|
19 </outputs>
|
|
20 <help> <![CDATA[
|
|
21 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.
|
|
22 ]]>
|
|
23 </help>
|
|
24 </tool> |