# HG changeset patch # User peterjc # Date 1495034460 14400 # Node ID 6955e091c023a28ba2e8cbf73007a04d91f23bba # Parent 515fc5316fdb700e2d76b9d46c16fa46dd0276f5 planemo upload for repository https://github.com/peterjc/pico_galaxy/tree/master/tools/samtools_idxstats commit 37d5b47ec23e2cbaa453cc660bb1fcbb10dd34ee-dirty diff -r 515fc5316fdb -r 6955e091c023 tools/samtools_idxstats/README.rst --- a/tools/samtools_idxstats/README.rst Thu May 11 12:48:26 2017 -0400 +++ b/tools/samtools_idxstats/README.rst Wed May 17 11:21:00 2017 -0400 @@ -56,6 +56,7 @@ - Planemo for Tool Shed upload (``.shed.yml``, internal change only). v0.0.5 - Use ```` (internal change only). - Single quote command line arguments (internal change only). +v0.0.6 - Python 3 compatible print function. ======= ====================================================================== diff -r 515fc5316fdb -r 6955e091c023 tools/samtools_idxstats/samtools_idxstats.py --- a/tools/samtools_idxstats/samtools_idxstats.py Thu May 11 12:48:26 2017 -0400 +++ b/tools/samtools_idxstats/samtools_idxstats.py Wed May 17 11:21:00 2017 -0400 @@ -11,13 +11,15 @@ tabular file. """ +from __future__ import print_function + import os import sys import tempfile if "-v" in sys.argv or "--version" in sys.argv: # Galaxy seems to invert the order of the two lines - print "(Galaxy wrapper v0.0.2)" + print("(Galaxy wrapper v0.0.3)") cmd = "samtools 2>&1 | grep -i ^Version" sys.exit(os.system(cmd)) diff -r 515fc5316fdb -r 6955e091c023 tools/samtools_idxstats/samtools_idxstats.xml --- a/tools/samtools_idxstats/samtools_idxstats.xml Thu May 11 12:48:26 2017 -0400 +++ b/tools/samtools_idxstats/samtools_idxstats.xml Wed May 17 11:21:00 2017 -0400 @@ -1,4 +1,4 @@ - + samtools idxstats samtools