Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/FastqIlluminaToSanger.xml @ 15:3e477c7e0e73 draft
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
author | timpalpant |
---|---|
date | Sat, 09 Jun 2012 16:03:59 -0400 |
parents | eb53be9a09f4 |
children |
rev | line source |
---|---|
13 | 1 <tool id="FastqIlluminaToSanger" name="Convert Fastq qualities" version="1.0.0"> |
2 <description>from Illumina to Sanger</description> | |
3 <command interpreter="sh">galaxyToolRunner.sh converters.FastqIlluminaToSanger -i $input -o $output</command> | |
4 <inputs> | |
5 <param name="input" type="data" format="fastqillumina" label="FASTQ, Illumina qualities" /> | |
6 </inputs> | |
7 <outputs> | |
8 <data name="output" format="fastqsanger" metadata_source="input" /> | |
9 </outputs> | |
10 <tests> | |
11 <test> | |
12 <param name="input" value="test.fastqillumina" ftype="fastqillumina"/> | |
13 <output name="output" file="test.fastqsanger"/> | |
14 </test> | |
15 </tests> | |
16 <help> | |
17 | |
15
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
18 This tool will convert a FASTQ file with ASCII quality scores encoded in Illumina 1.3-1.7 format (Phred+64) to Sanger format (Phred+33) for use with Bowtie and other Galaxy tools. Illumina CASAVA >= 1.8 already produces FASTQ files in Sanger format, so this tool should not be used on new Illumina sequencing data. This tool is a simpler, faster version of the FASTQ Groomer that does little error checking but performs much faster. If you are unsure what format your file is in, or need to do other conversions, use the FASTQ Groomer instead. |
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
19 |
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
20 For more information, read about FASTQ formats_ (right-click to open in new window). |
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
21 |
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
22 .. _formats: http://en.wikipedia.org/wiki/FASTQ_format |
13 | 23 |
24 .. class:: warningmark | |
25 | |
15
3e477c7e0e73
Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents:
13
diff
changeset
|
26 This tool requires fastqillumina formatted data. If you have fastq data that was not correctly autodetected, change the metadata by clicking on the pencil icon for the dataset. |
13 | 27 |
28 </help> | |
29 </tool> |