Skip to content

Commit

Permalink
maybe not to path
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander-Stuckey committed Nov 4, 2024
1 parent d3b653b commit a1309c3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/register_missing_combiner_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

from hail.vds import read_vds

from cpg_utils import to_path
from cpg_utils.hail_batch import dataset_path, init_batch
from metamist.apis import AnalysisApi
from metamist.models import Analysis, AnalysisStatus
Expand All @@ -24,7 +23,7 @@ def get_sg_ids(vds: str) -> list[str]:
Returns:
list[str]: A list of sequencing group IDs.
"""
return read_vds(to_path(dataset_path(vds))).variant_data.s.collect()
return read_vds(dataset_path(vds)).variant_data.s.collect()


def main(vds: str, dataset: str):
Expand Down

0 comments on commit a1309c3

Please sign in to comment.