Merge branch 'master' of mus.cacr.caltech.edu:htsworkflow
[htsworkflow.git] / encode_submission / ucsc_gather.py
index 5967eb734611ca93415efef08828065324bcd27e..8ad4f3ee297427c3d9c26252b4aa57718cd61bdb 100644 (file)
@@ -454,18 +454,6 @@ def get_library_info(host, apidata, library_id):
     return contents
 
 
-def make_submission_section(line_counter, files, attributes):
-    """
-    Create a section in the submission ini file
-    """
-    inifile = [ "[line%s]" % (line_counter,) ]
-    inifile += ["files=%s" % (",".join(files))]
-
-    for k,v in attributes.items():
-        inifile += ["%s=%s" % (k,v)]
-    return inifile
-
-
 def make_base_name(pathname):
     base = os.path.basename(pathname)
     name, ext = os.path.splitext(base)