def output(self): # The AVI job object provides a directory based on a hash of job # parameters which can be used in the AVI # So we create the dir if it doesn't exist already job_dir = self.job_model.request.output_path if not os.path.exists(job_dir): os.makedirs(job_dir) return AviLocalTarget(os.path.join(job_dir, 'gacs_data.vot'))
def output(self): return AviLocalTarget( os.path.join(settings.OUTPUT_PATH, self.outputFile))
def output(self): return AviLocalTarget( os.path.join(settings.OUTPUT_PATH, 'simulatedData_%s.vot' % self.outputFile))
def output(self): """Deprecated""" algorithm_task().output() return AviLocalTarget("/data/output/test.text")
def output(self): """Deprecated""" sim_query_task().output() return AviLocalTarget("/data/output/test.txt")
def output(self): return AviLocalTarget(os.path.join( settings.OUTPUT_PATH, "list_1.txt" ))
def output(self): job_dir = self.job_model.request.output_path return AviLocalTarget(os.path.join(job_dir, "pandas_profile.json"))
def input(self): return AviLocalTarget( os.path.join(settings.INPUT_PATH, self.sharedfile))