Results for "Awk"

Users

Blogs

  • AWK for beginners !

    AWK is a standard tool on every P...scripting language. Why use AWK instead of Perl? Readability....There is an implied loop and AWK automatically reads and parse...articularly useful to prevent AWK from assuming the arguments...localvar, arr) { # AWK, being a string-processing la...

    1835 days ago

  • Run bash script in Perl program !

    ...;my $in, 'command', 'arg1', 'arg2'); 5.a2p syntax: a2p [options] [awkscript] There is a Perl utility known as a2p which translates awk command to Perl. It takes awk...

    637 days ago

Bookmarks

Top-level pages

Wire posts

  • zcat input_file.fastq.gz | awk 'NR%4==1{printf ">%s\n", substr($0,2)}NR%4==2{print}' > output_file.fa #fastaQ2fasta #fastaq #fasta #Oneliner

    3646 days ago

  • Count the contigs length in index fasta file with samtools. $ awk '{s+=$2}END{print s}' scaffolds.fasta.fai #Fasta #Index #Length #Count #Size #Samtools

    2144 days ago

  • +44 more Wire posts

Fun

Bio-Scripts

Groups

  • Awk

    Awk

    Awk is widely used these days for extracti...logical data in Unix/Linux.Most of the awk code is single liner. Useful...eblinks: http://www.grymoire.com/Unix/Awk.html http://www.hcs.harvard....t http://www.math.utah.edu/docs/info/gawk_5.html http://www.osnews.com...

    3919 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

    2305 days ago

  • Most Commonly used Awk by Bioinformatician

      Awk is a programming language that is specifically designed for quickly manipulating space delimited data. Although you can achieve all its functionality with Perl, awk is simpler in many practical cases. Why awk? You can replace a pipeline of 'stuff | grep | sed | cut...' with a single ...

    Tags: Awk, Bioinformatics

    3912 days ago

  • +1 more Tags

Comments