-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move tasks to appropriate flow modules
HEDWG2-1211
- Loading branch information
Showing
5 changed files
with
251 additions
and
330 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
import os | ||
from collections import namedtuple | ||
|
||
from em_workflows.config import Config | ||
|
||
|
||
class BRTConfig(Config): | ||
binvol = os.environ.get("BINVOL_LOC", "/opt/rml/imod/bin/binvol") | ||
clip_loc = os.environ.get("CLIP_LOC", "/opt/rml/imod/bin/clip") | ||
|
||
|
||
BrtOutput = namedtuple("BrtOutput", ["ali_file", "rec_file"]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.