comparison hubArchiveCreator.py @ 18:d786bca6a75d draft

planemo upload for repository https://github.com/goeckslab/hub-archive-creator commit 3007f4ce1d6e8ac8324970d355f028b9394e2a5f
author rmarenco
date Fri, 30 Sep 2016 18:33:03 -0400
parents c02720d1afee
children 40469b265ddb
comparison
equal deleted inserted replaced
17:c02720d1afee 18:d786bca6a75d
145 all_datatype_dictionary.update(create_ordered_datatype_objects(datatype_class, inputs, inputs_data)) 145 all_datatype_dictionary.update(create_ordered_datatype_objects(datatype_class, inputs, inputs_data))
146 146
147 # Create Ordered Dictionary to add the tracks in the tool form order 147 # Create Ordered Dictionary to add the tracks in the tool form order
148 all_datatype_ordered_dictionary = collections.OrderedDict(all_datatype_dictionary) 148 all_datatype_ordered_dictionary = collections.OrderedDict(all_datatype_dictionary)
149 149
150 logging.debug("----- End of all_datatype_dictionary processing -----")
151 logging.debug("all_datatype_ordered_dictionary keys are: {0}".format(all_datatype_ordered_dictionary.values()))
152
153 logging.debug("----- Beginning of Track adding processing -----")
150 for index, datatypeObject in all_datatype_ordered_dictionary.iteritems(): 154 for index, datatypeObject in all_datatype_ordered_dictionary.iteritems():
151 trackHub.addTrack(datatypeObject.track.trackDb) 155 trackHub.addTrack(datatypeObject.track.trackDb)
156 logging.debug("----- End of Track adding processing -----")
152 157
153 # We process all the modifications to create the zip file 158 # We process all the modifications to create the zip file
154 #trackHub.createZip() 159 #trackHub.createZip()
155 160
156 # We terminate le process and so create a HTML file summarizing all the files 161 # We terminate le process and so create a HTML file summarizing all the files