view home/ross/galaxy/tools/tool_makers/toolfactory/test-data/pyrevpos.python @ 47:e95d9fe5ab50 draft

adding tests and local installation
author fubar
date Sun, 23 Aug 2020 21:02:03 -0400
parents
children
line wrap: on
line source

# reverse order of text by row
import sys
inp = sys.argv[1]
outp = sys.argv[2]
i = open(inp,'r').readlines()
o = open(outp,'w')
for row in i:
   rs = row.rstrip()
   rs = list(rs)
   rs.reverse()
   o.write(''.join(rs))
o.close()