Mercurial > repos > timpalpant > java_genomics_toolkit
diff galaxy-conf/FastqIlluminaToSanger.xml @ 20:9d56b5b85740 draft
Reuploaded to see if tools get loaded correctly this time.
author | timpalpant |
---|---|
date | Fri, 15 Jun 2012 15:10:26 -0400 |
parents | |
children | b43c420a6135 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/galaxy-conf/FastqIlluminaToSanger.xml Fri Jun 15 15:10:26 2012 -0400 @@ -0,0 +1,29 @@ +<tool id="FastqIlluminaToSanger" name="Convert Fastq qualities" version="1.0.0"> + <description>from Illumina to Sanger</description> + <command interpreter="sh">galaxyToolRunner.sh converters.FastqIlluminaToSanger -i $input -o $output</command> + <inputs> + <param name="input" type="data" format="fastqillumina" label="FASTQ, Illumina qualities" /> + </inputs> + <outputs> + <data name="output" format="fastqsanger" metadata_source="input" /> + </outputs> + <tests> + <test> + <param name="input" value="test.fastqillumina" ftype="fastqillumina"/> + <output name="output" file="test.fastqsanger"/> + </test> + </tests> +<help> + +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. + +For more information, read about FASTQ formats_ (right-click to open in new window). + +.. _formats: http://en.wikipedia.org/wiki/FASTQ_format + +.. class:: warningmark + +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. + +</help> +</tool>