Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions looper/cli_pydantic.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def run_looper(args: Namespace, test_args=None):
# Lazy imports - only load when actually running commands
import logmuse
import yaml
from eido import inspect_project
from pephubclient import PEPHubClient
from peppy.eido import inspect_project
from peppy.pephubclient import PEPHubClient
from rich.console import Console

from . import __version__
Expand Down
4 changes: 2 additions & 2 deletions looper/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@

import psutil
import yaml
from eido import get_input_files_size, read_schema
from eido.const import INPUT_FILE_SIZE_KEY, MISSING_KEY
from jinja2.exceptions import UndefinedError
from peppy.const import CONFIG_KEY, SAMPLE_YAML_EXT
from peppy.eido import get_input_files_size, read_schema
from peppy.eido.const import INPUT_FILE_SIZE_KEY, MISSING_KEY
from peppy.exceptions import RemoteYAMLError
from pipestat import PipestatError
from ubiquerg import expandpath
Expand Down
4 changes: 2 additions & 2 deletions looper/looper.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
from shutil import rmtree

from colorama import Fore, Style
from eido import validate_config, validate_sample
from eido.exceptions import EidoValidationError
from peppy.eido import validate_config, validate_sample
from peppy.eido.exceptions import EidoValidationError
from peppy.exceptions import RemoteYAMLError
from pipestat.exceptions import PipestatSummarizeError
from pipestat.reports import get_file_for_table
Expand Down
2 changes: 1 addition & 1 deletion looper/pipeline_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

import jsonschema
import pandas as pd
from eido import read_schema
from peppy import utils as peputil
from peppy.eido import read_schema
from ubiquerg import expandpath, is_url
from yacman import YAMLConfigManager, load_yaml

Expand Down
2 changes: 1 addition & 1 deletion looper/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def write_sample_yaml_cwl(namespaces: dict) -> dict:
Returns:
dict: Updated variable namespaces dict.
"""
from eido import read_schema
from peppy.eido import read_schema
from ubiquerg import is_url

def _get_schema_source(
Expand Down
4 changes: 2 additions & 2 deletions looper/processed_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@
import os
from logging import getLogger

from eido.const import PROP_KEY
from eido.exceptions import EidoSchemaInvalidError
from peppy.eido.const import PROP_KEY
from peppy.eido.exceptions import EidoSchemaInvalidError
from peppy.project import Project
from peppy.sample import Sample

Expand Down
2 changes: 1 addition & 1 deletion looper/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
# cached_property was introduced in python 3.8
cached_property = property

from eido import read_schema
from jsonschema import ValidationError
from pandas.core.common import flatten
from peppy import Project as peppyProject
from peppy.const import CONFIG_KEY
from peppy.eido import read_schema
from peppy.utils import make_abs_via_cfg
from pipestat import PipestatManager

Expand Down
2 changes: 1 addition & 1 deletion looper/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

import jinja2
import yaml
from pephubclient.constants import RegistryPath
from peppy import Project as peppyProject
from peppy.const import CONFIG_KEY, NAME_KEY, SAMPLE_MODS_KEY
from peppy.pephubclient.constants import RegistryPath
from pydantic import ValidationError
from rich.console import Console
from rich.pretty import pprint
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,11 @@ classifiers = [
]
dependencies = [
"colorama>=0.3.9",
"eido>=0.2.4",
"jinja2",
"logmuse>=0.2.0",
"pandas>=2.0.2",
"pephubclient>=0.4.0",
"pipestat>=0.12.0a1",
"peppy>=0.40.6",
"peppy>=0.50.0a4",
"pyyaml>=3.12",
"rich>=9.10.0",
"ubiquerg>=0.8.1",
Expand Down
Loading