view galaxy-conf/FastqIlluminaToSanger.xml @ 21:51b28ce6ef7e draft

Improve file type autodetection
author timpalpant
date Mon, 18 Jun 2012 14:50:31 -0400
parents 9d56b5b85740
children b43c420a6135
line wrap: on
line source

<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>