diff read_group_macros.xml @ 25:e188dc7a68e6 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bwa commit 8f4d108191d52e3b60212dfcc3f57541e5f849d0
author iuc
date Fri, 19 Aug 2022 18:51:56 +0000
parents 01ac0a5fedc3
children
line wrap: on
line diff
--- a/read_group_macros.xml	Wed May 05 18:22:08 2021 +0000
+++ b/read_group_macros.xml	Fri Aug 19 18:51:56 2022 +0000
@@ -23,7 +23,7 @@
         #import itertools
         #set $input_name1 = $clean($identifier_or_name($input1))
         #set $input_name2 = $clean($identifier_or_name($input2))
-        #set $common_prefix = ''.join([c[0] for c in itertools.takewhile(lambda x: all(x[0] == y for y in x), itertools.izip(*[$input_name1, $input_name2]))])
+        #set $common_prefix = ''.join([c[0] for c in itertools.takewhile(lambda x: all(x[0] == y for y in x), zip(*[$input_name1, $input_name2]))])
         #if len($common_prefix) > 3
             #return $common_prefix
         #else