예제 #1
0
 def _paste_pipelines(self, config_file):
     """merge intermediate pipelines."""
     pipeline_script = os.path.join(self.args.working_dir,
                                    self.args.pipeline_name + '.py')
     with open(pipeline_script, 'w') as ps:
         plumber = Plumber(ps, None)
         plumber.paste_pipelines(self.pipelines, config_file)
예제 #2
0
파일: utils.py 프로젝트: radaniba/kronos
 def make_script(self, sample_id):
     """run the plumber and make a python script for the pipeline."""
     with open(self.pipeline_script, 'w') as ps:
         plumber = Plumber(ps, self.wf)
         plumber.make_script(sample_id)
예제 #3
0
파일: kronos.py 프로젝트: radaniba/kronos
	def _paste_pipelines(self, config_file):
		"""merge intermediate pipelines."""
		pipeline_script = os.path.join(self.args.working_dir, self.args.pipeline_name + '.py') 
		with open(pipeline_script, 'w') as ps:
			plumber = Plumber(ps, None)
			plumber.paste_pipelines(self.pipelines, config_file)
예제 #4
0
 def make_script(self, sample_id):
     """run the plumber and make a python script for the pipeline."""
     with open(self.pipeline_script, 'w') as ps:
         plumber = Plumber(ps, self.wf)
         plumber.make_script(sample_id)