changeset 9:e00a79cf5f8c draft default tip

"planemo upload for repository https://github.com/artbio/tools-artbio/tree/master/tools/rsem commit fdb6ccd340e366ef386d69ff344036a83e479b2f"
author artbio
date Tue, 03 Mar 2020 07:28:39 -0500
parents f6fc9b92d629
children
files macros.xml rsem.py
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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>
--- 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()