# HG changeset patch
# User artbio
# Date 1583238519 18000
# Node ID e00a79cf5f8c6fa194e0e5b70992be78fd78714a
# Parent  f6fc9b92d6296e297651e8b0226837f8e1c0d89f
"planemo upload for repository https://github.com/artbio/tools-artbio/tree/master/tools/rsem commit fdb6ccd340e366ef386d69ff344036a83e479b2f"

diff -r f6fc9b92d629 -r e00a79cf5f8c macros.xml
--- a/macros.xml	Sun Jan 05 16:40:13 2020 -0500
+++ b/macros.xml	Tue Mar 03 07:28:39 2020 -0500
@@ -1,6 +1,6 @@
 <?xml version="1.0"?>
   <macros>
-    <token name="@WRAPPER_VERSION@">1.0.0</token>
+    <token name="@WRAPPER_VERSION@">1.0.1</token>
     <xml name="requirements">
         <requirements>
             <requirement type="package" version="1.3.0=pl526r341h4f16992_4">rsem</requirement>
diff -r f6fc9b92d629 -r e00a79cf5f8c rsem.py
--- a/rsem.py	Sun Jan 05 16:40:13 2020 -0500
+++ b/rsem.py	Tue Mar 03 07:28:39 2020 -0500
@@ -158,7 +158,7 @@
         if len(rvalb) > 0:
             rval += rvalb
         rval.append('</ul></body></html>')
-        fh = file(dataset.file_name, 'w')
+        fh = open(dataset.file_name, 'w')
         fh.write("\n".join(rval))
         fh.write('\n')
         fh.close()
@@ -270,7 +270,7 @@
         if len(rvalb) > 0:
             rval += rvalb
         rval.append('</ul></body></html>')
-        fh = file(dataset.file_name, 'w')
+        fh = open(dataset.file_name, 'w')
         fh.write("\n".join(rval))
         fh.write('\n')
         fh.close()