Skip to content

Commit b7ac374

Browse files
committed
Fix bug in paths
1 parent 94c983c commit b7ac374

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

v03_pipeline/lib/paths.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ def project_remap_path(
352352
),
353353
'remaps',
354354
sample_type.value,
355-
f'{project_guid}.ht',
355+
f'{project_guid}_remap.tsv',
356356
)
357357

358358

@@ -370,7 +370,7 @@ def project_pedigree_path(
370370
),
371371
'pedigrees',
372372
sample_type.value,
373-
f'{project_guid}.ht',
373+
f'{project_guid}_pedigree.tsv',
374374
)
375375

376376

v03_pipeline/lib/paths_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def test_project_remap_path(self) -> None:
239239
SampleType.WGS,
240240
'R0652_pipeline_test',
241241
),
242-
'/var/seqr/seqr-loading-temp/v3.1/GRCh38/SNV_INDEL/remaps/WGS/R0652_pipeline_test.ht',
242+
'/var/seqr/seqr-loading-temp/v3.1/GRCh38/SNV_INDEL/remaps/WGS/R0652_pipeline_remap.tsv',
243243
)
244244

245245
def test_project_pedigree_path(self) -> None:
@@ -250,5 +250,5 @@ def test_project_pedigree_path(self) -> None:
250250
SampleType.WES,
251251
'R0652_pipeline_test',
252252
),
253-
'/var/seqr/seqr-loading-temp/v3.1/GRCh38/GCNV/pedigrees/WES/R0652_pipeline_test.ht',
253+
'/var/seqr/seqr-loading-temp/v3.1/GRCh38/GCNV/pedigrees/WES/R0652_pipeline_pedigree.tsv',
254254
)

0 commit comments

Comments
 (0)