# HG changeset patch # User czlab # Date 1526607190 14400 # Node ID 621da360a15513c34d67bc225686cc817875b04a # Parent 64429d5e9365d8882d960c978ecaa193e097583b Uploaded diff -r 64429d5e9365 -r 621da360a155 trimming3.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/trimming3.xml Thu May 17 21:33:10 2018 -0400 @@ -0,0 +1,61 @@ + + using FASTX Toolkit + + + fastx_clipper -a $adapterSeq -l $discardShorterThan $discardNonclipped $discardClipped $adapterOnly $keepUnknown + #if $minAdapterAlignment.minOverlapRequired =="yes": + -M $minAdapterAlignment.minLen + #end if + -v -i $input 2>/dev/null | fastq_quality_trimmer -v -l $discardShorterThan -t $qualityThreshold -o $output + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +.. class:: infomark + +**What this tool does** + + +This tool takes as input FASTQ files and output FASTQ files with 3' adapters and extremely low quality bases (e.g. score less than 5) removed. + +It is a wrapper of fastx_clipper and fastq_quality_trimmer that are a part of the FASTX Toolkit (http://hannonlab.cshl.edu/fastx_toolkit/). + +----- + +**Parameter suggestion for discarding sequences** + +We typically require high quality score in barcode and 15 nt of CLIP tags. +* For standard CLIP: discard sequences shorter than 20 nt (5 nt barcode + 15 nt CLIP tag). +* For BrdU CLIP: discard sequences shorter than 29 nucleotides (14 nt barcode + 15 nt CLIP tag). + + + +