view notecsv2molina.awk @ 83:e5c62fdfae4e

awk program to transform from standard sonic-annotator csv output to molina-style
author Matthias Mauch <matthias.mauch@eecs.qmul.ac.uk>
date Thu, 04 Dec 2014 12:40:28 +0000
parents
children e640768a007f
line wrap: on
line source
BEGIN {FS=","}; {$2=$1+$2; $3 = 69+(log($3/440)/log(2)*12); print $1,$2, $3}