# HG changeset patch # User iuc # Date 1575211302 0 # Node ID b2f46fab765e426dcff5f71d6ba55dc5a4c28511 # Parent 614d53aa795f8a0aac696bd88ce1e2da1bd76b04 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/ commit fe30b00aa09587876f4c8be2a1494ca5ef6b8bac" diff -r 614d53aa795f -r b2f46fab765e maxbin2.xml --- a/maxbin2.xml Tue Oct 29 06:44:19 2019 -0400 +++ b/maxbin2.xml Sun Dec 01 14:41:42 2019 +0000 @@ -1,4 +1,4 @@ - + clusters metagenomic contigs into bins 2.2.7 @@ -49,16 +49,16 @@ #end if -thread \${GALAXY_SLOTS:-1} - && tar -xf out.marker_of_each_bin.tar.gz + && gzip -cd out.marker_of_each_bin.tar.gz | tar -xf - - ## redirect the idba out and err file content to stdout and err - ## since this is also wanted in case the error case ';' is used here to - ## separate commands + ## redirect the idba out and err file content to stdout and err + ## since this is also wanted in case the error case ';' is used here to + ## separate commands #if $intype_cond.intype_select == 'rds' and $intype_cond.reassembly != "" ; echo "==== IDBA stdout ====" - && cat out.idba.out + && if [[ -f out.idba.out ]]; then cat out.idba.out; fi && echo "==== IDBA stderr ====" 1>&2 - && cat out.idba.err 1>&2 + && if [[ -f out.idba.err ]]; then cat out.idba.err 1>&2; fi #end if ]]> @@ -142,7 +142,8 @@ - + +