Results for "bioawk"

Top-level pages

  • Converting FASTQ to FASTA

    ...STDIN. [-o OUTFILE] = FASTA output file. default is STDOUT. Bioawk Another option to convert fastq to fasta format using bioawk bioawk -c fastx '{print ">...

    2300 days ago

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

    2496 days ago

Bio-Scripts

  • FASTQ to FASTA

    ...| awk '{if(NR%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"...

    845 days ago

Comments