annotate fastq_to_fasta.xml @ 1:723b5b38d88a draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
author devteam
date Wed, 11 Nov 2015 12:43:11 -0500
parents 3571553aeb20
children 4844c1810c16
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
1 <tool id="fastq_to_fasta_python" name="FASTQ to FASTA" version="1.0.0">
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
2 <description>converter</description>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
5 </requirements>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
6 <command interpreter="python">fastq_to_fasta.py '$input_file' '$output_file' '${input_file.extension[len( 'fastq' ):]}'</command>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
7 <inputs>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
8 <param name="input_file" type="data" format="fastq" label="FASTQ file to convert" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
9 </inputs>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
10 <outputs>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
11 <data name="output_file" format="fasta" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
12 </outputs>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
13 <tests>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
14 <!-- basic test -->
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
15 <test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
16 <param name="input_file" value="sanger_full_range_original_sanger.fastqsanger" ftype="fastqsanger" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
17 <output name="output_file" file="fastq_to_fasta_python_1.out" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
18 </test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
19 <!-- color space test -->
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
20 <test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
21 <param name="input_file" value="sanger_full_range_as_cssanger.fastqcssanger" ftype="fastqcssanger" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
22 <output name="output_file" file="fastq_to_fasta_python_2.out" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
23 </test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
24 <!-- test of ignoring invalid score values: this input has ascii characters falling outside of illumina range, but they should not matter -->
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
25 <test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
26 <param name="input_file" value="sanger_full_range_original_sanger.fastqsanger" ftype="fastqillumina" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
27 <output name="output_file" file="fastq_to_fasta_python_1.out" />
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
28 </test>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
29 </tests>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
30 <help>
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
31 **What it does**
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
32
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
33 This tool converts FASTQ sequencing reads to FASTA sequences.
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
34
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
35
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
36 </help>
1
723b5b38d88a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
37
723b5b38d88a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
38 <citations>
723b5b38d88a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
39 <citation type="doi">10.1093/bioinformatics/btq281</citation>
723b5b38d88a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
40 </citations>
723b5b38d88a planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/galaxy_sequence_utils/fastqtofasta commit a1517c9d22029095120643bbe2c8fa53754dd2b7
devteam
parents: 0
diff changeset
41
0
3571553aeb20 Imported from capsule None
devteam
parents:
diff changeset
42 </tool>