()
| 53 | |
| 54 | |
| 55 | def _effective_path() -> str: |
| 56 | base_path = os.environ.get("PATH", "") |
| 57 | prepend = LOCAL_ENV.get("NGS_TOOL_PATH_PREPEND", "").strip() |
| 58 | if not prepend: |
| 59 | return base_path |
| 60 | return os.pathsep.join([prepend, base_path]) if base_path else prepend |
| 61 | |
| 62 | |
| 63 | def _effective_env() -> dict[str, str]: |
no test coverage detected