![]() |
![]()
| ![]() |
![]()
NAMEblt fastx2tsv - Convert FASTA and FASTQ streams to TSV format SYNOPSISblt fastx2tsv < file.fastq > file.tsv blt fastx2tsv < file.fasta > file.tsv DESCRIPTIONblt fastx2tsv converts a FASTA or FASTQ stream, possibly containing wrapped sequences and phred scores, into tab-separated data (TSV) for easier processing using standard tools such as awk, cut, etc. The TSV output of processing can be converted back to FASTA or FASTQ format using awk as follows: awk -F '\t' '{ printf("%s\n%s\n", $1, $2); }' \ EXAMPLES# Filter a FASTA file for sequences containing a pattern blt fastx2tsv < file.fasta | \ SEE ALSOblt-fastx-derep(1), blt-fastq-derep.sh(1) AUTHORJ. Bacon
|