Skip to content

Commit

Permalink
add alignment_path
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Sep 3, 2024
1 parent 5e95c19 commit 7512278
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cg/constants/scout.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ class ScoutUploadKey(StrEnum):
)

RAREDISEASE_SAMPLE_TAGS: dict[str, set[str]] = dict(
alignment_file={"cram"},
alignment_path={"cram"},
vcf2cytosure={"vcf2cytosure"},
mt_bam={"bam-mt"},
chromograph_autozyg={"chromograph", "autozyg"},
Expand Down
1 change: 1 addition & 0 deletions cg/meta/upload/scout/hk_tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ class SampleTags(BaseModel):
# If cram does not exist
bam_file: set[str] | None = None
alignment_file: set[str] | None = None
alignment_path: set[str] | None = None
vcf2cytosure: set[str] | None = None
mt_bam: set[str] | None = None
chromograph_autozyg: set[str] | None = None
Expand Down
1 change: 1 addition & 0 deletions cg/models/scout/scout_load_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class ScoutMipIndividual(ScoutIndividual):


class ScoutRarediseaseIndividual(ScoutIndividual):
alignment_path: str | None = None
mt_bam: str | None = None
bam_file: str | None = None
chromograph_autozyg: str | None = None
Expand Down

0 comments on commit 7512278

Please sign in to comment.