Skip to content

Commit

Permalink
swap back to full path on cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Stuckey committed Nov 4, 2024
1 parent 37a6cbb commit 2335163
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/register_missing_combiner_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from hail.vds import read_vds

from cpg_utils.hail_batch import config_retrieve, dataset_path, init_batch
from cpg_utils.hail_batch import config_retrieve, init_batch
from metamist.apis import AnalysisApi
from metamist.models import Analysis, AnalysisStatus

Expand All @@ -23,7 +23,7 @@ def get_sg_ids(vds: str) -> list[str]:
Returns:
list[str]: A list of sequencing group IDs.
"""
return read_vds(dataset_path(vds)).variant_data.s.collect()
return read_vds(vds).variant_data.s.collect()


def main(vds: str):
Expand Down

0 comments on commit 2335163

Please sign in to comment.