Beispiel #1
0
 def subjectname_processed_infile(self,subject):
     template.process(self.infile_path, subject, self, modelonly=True)
     return open(os.path.join(self.path, cf.TEMP_INPUT_FILE))
Beispiel #2
0
 def processed_infile(self,subject):
     """ Process the input file, with template, and return a file object to the result """
     template.process(self.infile_path,subject,self)
     return open(os.path.join(self.path,cf.TEMP_INPUT_FILE))
Beispiel #3
0
 def processed_infile(self,subject):
     """ Process the input file, with template, and return a file object to the result """
     template.process(self.infile_path,subject,self)
     return open(os.path.join(self.path,cf.TEMP_INPUT_FILE))
Beispiel #4
0
 def subjectname_processed_infile(self,subject):
     template.process(self.infile_path, subject, self, modelonly=True)
     return open(os.path.join(self.path, cf.TEMP_INPUT_FILE))
Beispiel #5
0
 def modelname_processed_infile(self, model):
     template.process(self.infile, model, self, modelonly=True)
     return open(os.path.join(self.path, TEMP_INPUT_FILE))