Skip to content

Commit

Permalink
Merge pull request #2708 from gregvonkuster/collections_fix
Browse files Browse the repository at this point in the history
Fix for splitting dataset collections
  • Loading branch information
jmchilton committed Aug 4, 2016
2 parents 24573f7 + d0bdd53 commit 65f0a83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/dataset_collections/subcollections.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ def _split_dataset_collection( dataset_collection, collection_type ):
if child_collection.collection_type == collection_type:
split_elements.append( element )
else:
split_elements.extend( _split_dataset_collection( element.child_collection ) )
split_elements.extend( _split_dataset_collection( element.child_collection, element.child_collection.collection_type ) )

return split_elements

0 comments on commit 65f0a83

Please sign in to comment.