Mercurial > repos > dereeper > sniplay
view hapmap2mlmm/transpose.awk @ 11:15b23cdde685 draft
planemo upload commit 305985afd3b7c3d47f531149c2f1a279af2d12aa-dirty
author | dereeper |
---|---|
date | Fri, 20 Apr 2018 09:04:25 -0400 |
parents | c6640c49fd01 |
children |
line wrap: on
line source
BEGIN { max_x =0; max_y =0; } { max_y++; for( i=1; i<=NF; i++ ) { if (i>max_x) max_x=i; A[i,max_y] = $i; } } END { for ( x=1; x<=max_x; x++ ) { for ( y=1; y<=max_y; y++ ) { if ( (x,y) in A ) printf "%s",A[x,y]; if ( y!=max_y ) printf " "; } printf "\n"; } }