9d50126a19a11d0fa31359b4a489af9ef567e8be,qanta/pipeline/__init__.py,Reports,run,#Reports#,50
Before Change
return LocalTarget("output/reporting/report.{}.pdf".format(self.weight))
def run(self):
shell("pdftk output/reporting/*.pdf cat output /tmp/report.{}.pdf".format(self.weight))
shell("mv /tmp/report.{0}.pdf output/reporting/report.{0}.pdf".format(self.weight))
class AllSummaries(WrapperTask):
After Change
def run(self):
shell("pdftk output/reporting/*.pdf cat output /tmp/report.pdf")
shell("mv /tmp/report.pdf output/reporting/report.pdf")
class AllSummaries(WrapperTask):
def requires(self):
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 3
Instances
Project Name: Pinafore/qb
Commit Name: 9d50126a19a11d0fa31359b4a489af9ef567e8be
Time: 2016-11-30
Author: ski.rodriguez@gmail.com
File Name: qanta/pipeline/__init__.py
Class Name: Reports
Method Name: run
Project Name: Pinafore/qb
Commit Name: f617c357258a6c7f403a5c044355782c7077fc52
Time: 2018-04-06
Author: ski.rodriguez@gmail.com
File Name: qanta/guesser/vw.py
Class Name: VWGuesser
Method Name: train
Project Name: Pinafore/qb
Commit Name: a0dedd65cf25a2eb3ae9d5cd1fb45e7b1fd8070c
Time: 2018-05-07
Author: ski.rodriguez@gmail.com
File Name: qanta/pipeline/preprocess.py
Class Name: WikipediaDumps
Method Name: run