Skip to content

Commit

Permalink
path fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony-xy-Liu committed Apr 21, 2023
1 parent 78cc4a1 commit 188cc1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup_modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
ref_dir = Path(sys.argv[1])
os.makedirs(ref_dir, exist_ok=True)

SCRIPT = Path(os.path.abspath(__file__))
HERE = Path(os.path.dirname(__file__))

modules = []
modules += ComputeModule.LoadSet(SCRIPT.joinpath("logistics"))
modules += ComputeModule.LoadSet(SCRIPT.joinpath("metagenomics"))
modules += ComputeModule.LoadSet(SCRIPT.joinpath("high_throughput_screening"))
modules += ComputeModule.LoadSet(HERE.joinpath("logistics"))
modules += ComputeModule.LoadSet(HERE.joinpath("metagenomics"))
modules += ComputeModule.LoadSet(HERE.joinpath("high_throughput_screening"))
modules = [m for m in modules if "dram" not in m.name]
wf = lx.Workflow(modules, ref_dir)
wf.Setup('singularity')

0 comments on commit 188cc1a

Please sign in to comment.