# HG changeset patch # User nilesh # Date 1373429769 14400 # Node ID 21acc3cd05675abdf14a8a82476a275d21b035ee # Parent c522aaea6880c6f7eabc2ccdabf41116e725c172 Deleted selected files diff -r c522aaea6880 -r 21acc3cd0567 sickle.xml --- a/sickle.xml Wed Jul 10 00:15:08 2013 -0400 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,102 +0,0 @@ - - Windowed Adaptive Trimming of FastQ data - - zlib - fastq_validator - - - /Users/amol/Desktop/galaxy-galaxy-dist-cea3ddf6cdda/tools/mytools/sickle $readtype.single_or_paired --quiet - - #if str($readtype.single_or_paired) == "se": - -f $input_single -t $qual_type -o $output_single - #end if - - #if str($readtype.single_or_paired) == "pe": - -f $input_paired1 -r $input_paired2 -o $output_paired1 -p $output_paired2 -s $output_paired_single -t $qual_type - #end if - - #if str($qual_threshold) != "": - -q $qual_threshold - #end if - - #if str($length_threshold) != "": - -l $length_threshold - #end if - - #if $no_five_prime: - -x - #end if - - #if $discard_n: - -n - #end if - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - (readtype['single_or_paired'] == 'se') - - - - (readtype['single_or_paired'] == 'pe') - - - - (readtype['single_or_paired'] == 'pe') - - - - (readtype['single_or_paired'] == 'pe') - - - - -Most modern sequencing technologies produce reads that have deteriorating quality towards the 3'-end and some towards the 5'-end as well. Incorrectly called bases in both regions negatively impact assembles, mapping, and downstream bioinformatics analyses. - -Sickle is a tool that uses sliding windows along with quality and length thresholds to determine when quality is sufficiently low to trim the 3'-end of reads and also determines when the quality is sufficiently high enough to trim the 5'-end of reads. It will also discard reads based upon the length threshold. It takes the quality values and slides a window across them whose length is 0.1 times the length of the read. If this length is less than 1, then the window is set to be equal to the length of the read. Otherwise, the window slides along the quality values until the average quality in the window rises above the threshold, at which point the algorithm determines where within the window the rise occurs and cuts the read and quality there for the 5'-end cut. Then when the average quality in the window drops below the threshold, the algorithm determines where in the window the drop occurs and cuts both the read and quality strings there for the 3'-end cut. However, if the length of the remaining sequence is less than the minimum length threshold, then the read is discarded entirely. 5'-end trimming can be disabled. - -Sickle also has an option to discard reads with any Ns in them. - -Sickle supports three types of quality values: Illumina, Solexa, and Sanger. Note that the Solexa quality setting is an approximation (the actual conversion is a non-linear transformation). The end approximation is close. Illumina quality refers to qualities encoded with the CASAVA pipeline between versions 1.3 and 1.7. Illumina quality using CASAVA >= 1.8 is Sanger encoded. - -Note that Sickle will remove the 2nd fastq record header (on the "+" line) and replace it with simply a "+". This is the default format for CASAVA >= 1.8. - -Sickle also supports gzipped file inputs. - - -