# HG changeset patch # User iuc # Date 1647502950 0 # Node ID 6af1021d16a4da4a3ca10b546a143fdbedd13966 # Parent e292ef59183d7a2d9eb3ddcf775cd2dc6c9fedc2 "planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bbtools commit 08ae36bc77634de84d9613a71552a3e64a71a3f7" diff -r e292ef59183d -r 6af1021d16a4 bbmap.xml --- a/bbmap.xml Thu Feb 03 21:11:18 2022 +0000 +++ b/bbmap.xml Thu Mar 17 07:42:30 2022 +0000 @@ -1,4 +1,4 @@ - + short-read aligner macros.xml @@ -30,7 +30,7 @@ #end if #else: #set read1 = $input_type_cond.reads_collection['forward'] - #set read1_identifier = re.sub('[^\s\w\-]', '_', str($read1.name)) + #set read1_identifier = re.sub('[^\s\w\-]', '_', str($read1.element_identifier)) ## bbmap uses the file extension to determine the input format. #set ext = $read1_identifier + '.fastq' #if $read1.ext.endswith('.gz'): @@ -39,7 +39,7 @@ #set read1_file = $read1_identifier + $ext ln -s '${read1}' '${read1_file}' && #set read2 = $input_type_cond.reads_collection['reverse'] - #set read2_identifier = re.sub('[^\s\w\-]', '_', str($read2.name)) + #set read2_identifier = re.sub('[^\s\w\-]', '_', str($read2.element_identifier)) #set read2_file = $read2_identifier + $ext ln -s '${read2}' '${read2_file}' && #end if