Delila Program: uncsv

uncsv program

Documentation for the uncsv program is below, with links to related programs in the "see also" section.

{   version = 1.01; (* of uncsv.p 2011 Sep 16}

(* begin module describe.uncsv *)
(*
name
   uncsv: convert csv to plain space table

synopsis
   uncsv(csv: in, uncsvp: in, spacetable: out, output: out)

files

   csv:  comma separated table

   spacetable:  space sparated table.

   uncsvp:  parameters to control the program.  The file must contain the
      following parameters, one per line:

      parameterversion: The version number of the program.  This allows the
         user to be warned if an old parameter file is used.

      not used.

   output: messages to the user

description

   Convert csv table to space table.  Things inside quotes are
   preserved except spaces become underscores '_'.  Commas between
   columns become spaces.  Two commas outside quotes become a dash.

   The script unmkcsv can't handle quotes, this should.

examples

   E3017",3,"52,584,834",28,"C","G","splicing",,,"c.4348G>C","SPLICE"

becomes:

   "E3017" 3 "52,584,834" 28 "C" "G" "splicing" - - "c.4348G>C" "SPLICE"


documentation

see also

   unmkcsv script

author

   Thomas Dana Schneider

bugs

technical notes

*)
(* end module describe.uncsv *)
{This manual page was created by makman 1.45}


{created by htmlink 1.62}