From: Diane Trout Date: Mon, 26 Mar 2012 22:21:06 +0000 (-0700) Subject: Remove a function from the inifile version of ucsc_gather X-Git-Tag: v0.5.5~43 X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=htsworkflow.git;a=commitdiff_plain;h=2dcb1ba487c858fa1751a68126ee5031b7b0f054 Remove a function from the inifile version of ucsc_gather --- diff --git a/encode_submission/ucsc_gather.py b/encode_submission/ucsc_gather.py index 94ab220..d8c3003 100644 --- a/encode_submission/ucsc_gather.py +++ b/encode_submission/ucsc_gather.py @@ -425,18 +425,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)