Automatically add the flowcell subdirectory to the sequence archive path
authorDiane Trout <diane@caltech.edu>
Sat, 1 Sep 2012 02:53:03 +0000 (19:53 -0700)
committerDiane Trout <diane@caltech.edu>
Sat, 1 Sep 2012 02:53:03 +0000 (19:53 -0700)
encode_submission/geo_gather.py
encode_submission/ucsc_gather.py

index 9a1f51e7564431a28cf1f5b99b2b38f74574f739..a2901058371ecec871224076f94362a3eaf6ce43 100644 (file)
@@ -77,7 +77,8 @@ def main(cmdline=None):
         results.make_tree_from(opts.make_tree_from)
 
     if opts.fastq:
-        extractor = CondorFastqExtract(opts.host, apidata, opts.sequence,
+        flowcells = os.path.join(opts.sequence, 'flowcells')
+        extractor = CondorFastqExtract(opts.host, flowcells,
                                        force=opts.force)
         extractor.create_scripts(results)
 
index 811ffdfc277373e86b6f0f3fe7f9782463c8bdb0..a9fa72a83ddc1c4263e509070f50053d238fa405 100644 (file)
@@ -96,7 +96,8 @@ def main(cmdline=None):
         mapper.link_daf(results)
 
     if opts.fastq:
-        extractor = CondorFastqExtract(opts.host, apidata, opts.sequence,
+        flowcells = os.path.join(opts.sequence, 'flowcells')
+        extractor = CondorFastqExtract(opts.host, flowcells,
                                        force=opts.force)
         extractor.create_scripts(results)