# HG changeset patch
# User iuc
# Date 1568209236 14400
# Node ID 9de82b4963e64b9e47ad46869eefbff13e8af156
# Parent 0ae74c70b267f6f769ce20e2fa5399a461f33f46
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse commit 0a26506563ff9b7fa683d3d0eaa16436c3560908"
diff -r 0ae74c70b267 -r 9de82b4963e6 jbrowse.py
--- a/jbrowse.py Fri Aug 30 03:36:39 2019 -0400
+++ b/jbrowse.py Wed Sep 11 09:40:36 2019 -0400
@@ -654,7 +654,8 @@
# Only index if not already done
if not os.path.exists(dest):
cmd = ['sort', '-k1,1', '-k2,2n', data]
- self.subprocess_check_call(cmd, output=dest)
+ with open(dest, 'w') as handle:
+ self.subprocess_check_call(cmd, output=handle)
self.subprocess_check_call(['bgzip', '-f', dest])
self.subprocess_check_call(['tabix', '-f', '-p', 'bed', dest + '.gz'])
diff -r 0ae74c70b267 -r 9de82b4963e6 jbrowse.xml
--- a/jbrowse.xml Fri Aug 30 03:36:39 2019 -0400
+++ b/jbrowse.xml Wed Sep 11 09:40:36 2019 -0400
@@ -673,6 +673,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -861,7 +878,7 @@
-
+
diff -r 0ae74c70b267 -r 9de82b4963e6 macros.xml
--- a/macros.xml Fri Aug 30 03:36:39 2019 -0400
+++ b/macros.xml Wed Sep 11 09:40:36 2019 -0400
@@ -14,7 +14,7 @@
\$GALAXY_JBROWSE_SHARED_DIR
- galaxy4
+ galaxy5
11
-
+
-
-
@@ -42,13 +42,13 @@