view galaxy-conf/FastqIlluminaToSanger.xml @ 16:35031c567ece draft

Add sam_fa_indices.loc.sample to enable DNAProperty and FindNMer tools that require samtools indices to be installed.
author timpalpant
date Sat, 09 Jun 2012 16:06:25 -0400
parents 3e477c7e0e73
children
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>