# HG changeset patch # User iuc # Date 1575211353 18000 # Node ID cfd50144a871711cdbd2ad88a667012a67e02e75 # Parent 6a638de7915cb74707abed75b6be8532306b05d6 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/maxbin2/ commit fe30b00aa09587876f4c8be2a1494ca5ef6b8bac" diff -r 6a638de7915c -r cfd50144a871 maxbin2.xml --- a/maxbin2.xml Tue Oct 29 08:45:20 2019 -0400 +++ b/maxbin2.xml Sun Dec 01 09:42:33 2019 -0500 @@ -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 @@ - + +