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

    2494 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...

    843 days ago