Skip to content

Commit

Permalink
fix var names
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Aug 28, 2024
1 parent 8a2fb22 commit 54ae5c5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cg/constants/scout.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class ScoutUploadKey(StrEnum):

RAREDISEASE_SAMPLE_TAGS = dict(
bam_file={"bam"},
alignment_file={"cram"},
# alignment_file={"cram"},
vcf2cytosure={"vcf2cytosure"},
mt_bam={"bam-mt"},
chromograph_autozyg={"chromograph", "autozyg"},
Expand Down
9 changes: 7 additions & 2 deletions cg/models/scout/scout_load_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,13 @@ class ScoutMipIndividual(ScoutIndividual):

class ScoutRarediseaseIndividual(ScoutIndividual):
mt_bam: str | None = None
chromograph_images: ChromographImages = ChromographImages()
reviewer: Reviewer = Reviewer()
bam_file: str | None = None
chromograph_autozyg: str | None = None
chromograph_coverage: str | None = None
chromograph_regions: ChromographImages = ChromographImages()
chromograph_sites: ChromographImages = ChromographImages()
reviewer_alignment: Reviewer = Reviewer()
reviewer_alignment_index: Reviewer = Reviewer()
rhocall_bed: str | None = None
rhocall_wig: str | None = None
tiddit_coverage_wig: str | None = None
Expand Down

0 comments on commit 54ae5c5

Please sign in to comment.