diff 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 diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/home/ross/galaxy/tools/tool_makers/toolfactory/test-data/pyrevpos.python	Sun Aug 23 21:02:03 2020 -0400
@@ -0,0 +1,13 @@
+# 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() 
+