Mercurial > repos > devteam > fastqtofasta
annotate fastq_to_fasta.xml @ 1:2ebd6fcee4c4 draft
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
| author | devteam |
|---|---|
| date | Tue, 13 Oct 2015 12:45:08 -0400 |
| parents | daf96c3e3b60 |
| children | 74831e85c49b |
| rev | line source |
|---|---|
| 0 | 1 <tool id="fastq_to_fasta_python" name="FASTQ to FASTA" version="1.0.0"> |
| 2 <description>converter</description> | |
| 3 <requirements> | |
| 4 <requirement type="package" version="1.0.0">galaxy_sequence_utils</requirement> | |
| 5 </requirements> | |
| 6 <command interpreter="python">fastq_to_fasta.py '$input_file' '$output_file' '${input_file.extension[len( 'fastq' ):]}'</command> | |
| 7 <inputs> | |
| 8 <param name="input_file" type="data" format="fastq" label="FASTQ file to convert" /> | |
| 9 </inputs> | |
| 10 <outputs> | |
| 11 <data name="output_file" format="fasta" /> | |
| 12 </outputs> | |
| 13 <tests> | |
| 14 <!-- basic test --> | |
| 15 <test> | |
| 16 <param name="input_file" value="sanger_full_range_original_sanger.fastqsanger" ftype="fastqsanger" /> | |
| 17 <output name="output_file" file="fastq_to_fasta_python_1.out" /> | |
| 18 </test> | |
| 19 <!-- color space test --> | |
| 20 <test> | |
| 21 <param name="input_file" value="sanger_full_range_as_cssanger.fastqcssanger" ftype="fastqcssanger" /> | |
| 22 <output name="output_file" file="fastq_to_fasta_python_2.out" /> | |
| 23 </test> | |
| 24 <!-- test of ignoring invalid score values: this input has ascii characters falling outside of illumina range, but they should not matter --> | |
| 25 <test> | |
| 26 <param name="input_file" value="sanger_full_range_original_sanger.fastqsanger" ftype="fastqillumina" /> | |
| 27 <output name="output_file" file="fastq_to_fasta_python_1.out" /> | |
| 28 </test> | |
| 29 </tests> | |
| 30 <help> | |
| 31 **What it does** | |
| 32 | |
| 33 This tool converts FASTQ sequencing reads to FASTA sequences. | |
| 34 | |
| 35 | |
| 36 </help> | |
|
1
2ebd6fcee4c4
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
37 |
|
2ebd6fcee4c4
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
38 <citations> |
|
2ebd6fcee4c4
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
39 <citation type="doi">10.1093/bioinformatics/btq281</citation> |
|
2ebd6fcee4c4
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
40 </citations> |
|
2ebd6fcee4c4
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
41 |
| 0 | 42 </tool> |
