|
12 | 12 | TEST_PEDIGREE_3 = 'v03_pipeline/var/test/pedigrees/test_pedigree_3.tsv'
|
13 | 13 | TEST_PEDIGREE_5 = 'v03_pipeline/var/test/pedigrees/test_pedigree_5.tsv'
|
14 | 14 |
|
| 15 | +TEST_RUN_ID = 'manual__2024-04-03' |
| 16 | + |
15 | 17 |
|
16 | 18 | class WriteFamilyTableTaskTest(MockedDatarootTestCase):
|
17 | 19 | def test_snv_write_family_table_task(self) -> None:
|
18 | 20 | worker = luigi.worker.Worker()
|
19 | 21 | wft_task = WriteFamilyTableTask(
|
20 | 22 | reference_genome=ReferenceGenome.GRCh38,
|
21 | 23 | dataset_type=DatasetType.SNV_INDEL,
|
| 24 | + run_id=TEST_RUN_ID, |
22 | 25 | sample_type=SampleType.WGS,
|
23 | 26 | callset_path=TEST_SNV_INDEL_VCF,
|
24 | 27 | project_guid='R0113_test_project',
|
@@ -156,6 +159,7 @@ def test_sv_write_family_table_task(self) -> None:
|
156 | 159 | write_family_table_task = WriteFamilyTableTask(
|
157 | 160 | reference_genome=ReferenceGenome.GRCh38,
|
158 | 161 | dataset_type=DatasetType.SV,
|
| 162 | + run_id=TEST_RUN_ID, |
159 | 163 | sample_type=SampleType.WGS,
|
160 | 164 | callset_path=TEST_SV_VCF,
|
161 | 165 | project_guid='R0115_test_project2',
|
@@ -408,6 +412,7 @@ def test_gcnv_write_family_table_task(self) -> None:
|
408 | 412 | write_family_table_task = WriteFamilyTableTask(
|
409 | 413 | reference_genome=ReferenceGenome.GRCh38,
|
410 | 414 | dataset_type=DatasetType.GCNV,
|
| 415 | + run_id=TEST_RUN_ID, |
411 | 416 | sample_type=SampleType.WES,
|
412 | 417 | callset_path=TEST_GCNV_BED_FILE,
|
413 | 418 | project_guid='R0115_test_project2',
|
|
0 commit comments