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

    2295 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

    2491 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"...

    840 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

    2295 days ago

Comments