view unfold_column.py @ 7:01ca80da2266 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/text_processing/text_processing commit 4379e712f76f2bb12ee2cc270dd8a0e806df2cd6
author bgruening
date Mon, 22 May 2017 07:41:58 -0400
parents 37e1eb05b1b4
children f46f0e4f75c4
line wrap: on
line source

#!/usr/bin/env python

import sys

out = open(sys.argv[4], 'w+')

sep = sys.argv[3]
# un-sanitize Galaxy inputs
if sep == 'X':
    sep = ';'

with open(sys.argv[1]) as handle:
    for line in handle:
        cols = line.split('\t')
        unfolding_column = int(sys.argv[2]) - 1
        column_content = cols[ unfolding_column ]
        for elem in column_content.split( sep ):
            out.write( '\t'.join( cols[:unfolding_column] + [elem] + cols[unfolding_column+1:]) )
out.close()