# 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 @@ - 1.0.0 + 1.0.1 rsem 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('') - 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('') - fh = file(dataset.file_name, 'w') + fh = open(dataset.file_name, 'w') fh.write("\n".join(rval)) fh.write('\n') fh.close()