Results for "fastx"

Top-level pages

Wire posts

  • Find a pattern in first 7 characters of reads. bioawk -c fastx 'substr($seq,0,7) == $TAG { print }' reads.fq.gz #Reads #NGS #Extract #Pattern

    2490 days ago

Bio-Scripts

  • FASTQ to FASTA

    ...4==1) {printf(">%s\n",substr($0,2));} else if(NR%4==2) print;}' > file.fa #seqtk seqtk seq -a input.fastq > output.fasta #Bioawk bioawk -c fastx '{print ">"$name"\n"$seq}' in...

    839 days ago

Tags

  • Converting FASTQ to FASTA

    There are several ways you can convert fastq to fasta sequences. Some methods are listed below. Using SED sed can be used to selectively print the desired lines from a file, so if you print the first and 2rd line of every 4 lines, you get the sequence header and sequence need...

    Tags: fasta, fastq, convert, sed, awk, seqtk, bioawk, fastx, Emboss, fastq2fasta

    2294 days ago