# HG changeset patch # User stheil # Date 1444983379 14400 # Node ID edda44d54b59fede62560daf2a4eb329a2636b7d # Parent 14f74ce39bb1c29eb27c53c4a82a6636a31f6486 Uploaded diff -r 14f74ce39bb1 -r edda44d54b59 fq2fa.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/fq2fa.xml Fri Oct 16 04:16:19 2015 -0400 @@ -0,0 +1,55 @@ + + fq2fa is a simple tool given by IDBA package that allows to convert fastq to fasta, merge paired-end reads and filter out reads containing 'N's + + fq2fa + #if $fileLayout.layout=='paired' + --paired $fileLayout.sequence + #else if $fileLayout.layout=='merge' + --merge $fileLayout.sequenceR1 $fileLayout.sequenceR2 + #else + $fileLayout.sequence + #end if + $filter + $output + + + + + + + + + + + + + + + + + + + + + + + + + +===== +fq2fa +===== +Convert Fastq sequences to Fasta sequences. + +| ``Usage:`` +| ``fq2fa tmp.fq tmp.fa [...]`` +| ``fq2fa --paired tmp.fq tmp.fa`` +| ``fq2fa --merge tmp_1.fq tmp_2.fq tmp.fa`` +| +| Allowed Options: + +--paired if the reads are paired-end in one file +--merge if the reads are paired-end in two files +--filter filter out reads containing 'N' + +