view galaxy-conf/FastqIlluminaToSanger.xml @ 25:b43c420a6135 draft default tip

Incorporate fix: https://github.com/timpalpant/java-genomics-toolkit/commit/9a6c61b7c6b8d85a1cd3f595eed657a537b85dc9
author timpalpant
date Sat, 09 Feb 2019 14:02:24 -0500
parents 9d56b5b85740
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="bash">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>