コード例 #1
0
ファイル: persistence.py プロジェクト: Kirill84/snakemake
 def inputfiles(self):
     # we consider all input files, also of not running jobs
     return Job.files(self.dag.jobs, "input")
コード例 #2
0
ファイル: persistence.py プロジェクト: ginger0106/snakemake
 def inputfiles(self):
     # we consider all input files, also of not running jobs
     return Job.files(self.dag.jobs, "input")
コード例 #3
0
ファイル: persistence.py プロジェクト: Kirill84/snakemake
 def outputfiles(self):
     # we only look at output files that will be updated
     return Job.files(self.dag.needrun_jobs, "output")
コード例 #4
0
ファイル: persistence.py プロジェクト: ginger0106/snakemake
 def outputfiles(self):
     # we only look at output files that will be updated
     return Job.files(self.dag.needrun_jobs, "output")