comparison fasta_to_fastq.xml @ 2:1ae786d82161 draft

Uploaded
author p.lucas
date Wed, 24 Jul 2024 12:44:39 +0000
parents 3c99ff6e67ca
children b1fee084ca32
comparison
equal deleted inserted replaced
1:60e768cf5101 2:1ae786d82161
1 <tool id="fasta_to_fastq" name="FASTA to FASTQ" version="1.0"> 1 <tool id="fasta_to_fastq" name="FASTA to FASTQ" version="1.1">
2 <description>Convert a FASTA file to a FASTQ file</description> 2 <description>Convert a FASTA file to a FASTQ file</description>
3 <requirements> 3 <requirements>
4 <requirement type="package" version="1.79">biopython</requirement> 4 <requirement type="package" version="1.79">biopython</requirement>
5 </requirements> 5 </requirements>
6 <stdio>
7 <exit_code range="1:" />
8 </stdio>
6 <command><![CDATA[ 9 <command><![CDATA[
7 python '$__tool_directory__/fasta2fastq.py' 10 python '$__tool_directory__/fasta2fastq.py'
8 -i "$inputfile" 11 -i "$inputfile"
9 -s "$score" 12 -s "$score"
10 -o "$output" 13 -o "$output"
11 ]]> 14 ]]>
12 </command> 15 </command>
13 <inputs> 16 <inputs>
14 <param type="data" name="inputfile" format="fasta" label="Input fasta file"/> 17 <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)"/> 18 <param type="integer" name="score" label="Quality score (only positive int)" value="40"/>
16 </inputs> 19 </inputs>
17 <outputs> 20 <outputs>
18 <data name="output" format="fastq" label="${tool.name} on ${on_string}"/> 21 <data name="output" format="fastq"/>
19 </outputs> 22 </outputs>
20 <help> <![CDATA[ 23 <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. 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.
22 ]]> 25 ]]>
23 </help> 26 </help>
24 </tool> 27 </tool>