Update gerald config file generation.
authorDiane Trout <diane@caltech.edu>
Thu, 7 Oct 2010 22:32:45 +0000 (22:32 +0000)
committerDiane Trout <diane@caltech.edu>
Thu, 7 Oct 2010 22:32:45 +0000 (22:32 +0000)
Include ELAND_SET_SIZE, WITH_SEQUENCE options
Stop commenting SEQUENCE_FORMAT out

htsworkflow/pipelines/retrieve_config.py
scripts/retrieve_config [changed mode: 0644->0755]

index fbd1187a5ca14e5517b4e8b455d3cf82c203a484..c3f32c7d50e2b9dddc271e14f1b8293ec1f40e5b 100644 (file)
@@ -108,7 +108,6 @@ def format_gerald_header(flowcell_info):
         config += ['Lane%s: %s | %s' % (lane_number, lane_info['library_id'],
                                         lane_info['library_name'])]
 
-    config += ['SEQUENCE_FORMAT --fastq']
     config += ['']
     return "\n# ".join(config)
 
@@ -124,6 +123,9 @@ def format_gerald_config(options, flowcell_info, genome_map):
     # in the config file... things like which lane is which library.
     config = [format_gerald_header(flowcell_info)]
 
+    config += ['SEQUENCE_FORMAT --fastq']
+    config += ['ELAND_SET_SIZE 20']
+    config += ['12345678:WITH_SEQUENCE TRUE']
     analysis_suffix = eland_analysis_suffix[flowcell_info['paired_end']]
     sequence_suffix = sequence_analysis_suffix[flowcell_info['paired_end']]
     lane_groups = group_lane_parameters(flowcell_info)
old mode 100644 (file)
new mode 100755 (executable)