Skip to content

Commit

Permalink
Merge pull request #4104 from dannon/tags_continued
Browse files Browse the repository at this point in the history
[17.05] Change to only inheriting 'name' tags
  • Loading branch information
martenson committed May 23, 2017
2 parents 9ebc464 + 989b6be commit aa8aafb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/galaxy/tools/actions/__init__.py
Expand Up @@ -236,7 +236,8 @@ def execute(self, tool, trans, incoming={}, return_job=False, set_output_hid=Tru
incoming[ "%s|__identifier__" % name ] = identifier

for tag in data.tags:
preserved_tags.append(tag)
if tag.user_tname == 'name':
preserved_tags.append(tag)

# Collect chromInfo dataset and add as parameters to incoming
( chrom_info, db_dataset ) = app.genome_builds.get_chrom_info( input_dbkey, trans=trans, custom_build_hack_get_len_from_fasta_conversion=tool.id != 'CONVERTER_fasta_to_len' )
Expand Down

0 comments on commit aa8aafb

Please sign in to comment.