1
2
3 """
4 This module allows to cache Simcoal2 results, and return on the fly
5 in case the calculation was done. Async version
6
7 This version will run Sincoal2 (if necessary) Asynchrously.
8
9 """
10
11 from logging import debug
12 from sys import exit
13 import os
14 import tarfile
15 import tempfile
16 from PopGen.SimCoal.Controller import SimCoalController
17 from PopGen.SimCoal import Cache
18 from PopGen import Config
19 from PopGen import Async
20
24
25 - def runJob(self, parameters, inputFiles):
37