Skip to content

Commit

Permalink
Rename "Matched All Builds" as "Complete"
Browse files Browse the repository at this point in the history
  • Loading branch information
TheMadBug committed Aug 7, 2024
1 parent 544c758 commit 98e1195
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions classification/migrations/0154_alter_importedalleleinfo_status.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.11 on 2024-08-07 03:48

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('classification', '0153_one_off_remind_rematch_allele_info_bad_end_norm'),
]

operations = [
migrations.AlterField(
model_name='importedalleleinfo',
name='status',
field=models.CharField(choices=[('P', 'Processing'), ('I', 'Matched Imported Variant'), ('M', 'Complete'), ('F', 'Failed')], default='P', max_length=1),
),
]
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class ImportedAlleleInfoStatus(TextChoices):
MATCHED_IMPORTED_BUILD = "I", "Matched Imported Variant"
""" We have a variant for the imported build, but not yet lifted it over """

MATCHED_ALL_BUILDS = "M", "Matched All Builds"
MATCHED_ALL_BUILDS = "M", "Complete"
""" There's a 37 and 38 variant linked (or at least there was an attempted liftover) """

FAILED = "F", "Failed"
Expand Down

0 comments on commit 98e1195

Please sign in to comment.