-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'refs/heads/feature/expert_panel'
- Loading branch information
Showing
14 changed files
with
8,302 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
annotation/migrations/0073_clinvarrecordcollection_allele_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Generated by Django 4.2.2 on 2023-08-16 02:48 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('snpdb', '0098_columns_collections_add_internally_classified_labs'), | ||
('annotation', '0072_remove_clinvarrecordcollection_min_stars_loaded'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='clinvarrecordcollection', | ||
name='allele', | ||
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='snpdb.allele'), | ||
), | ||
migrations.AddField( | ||
model_name='clinvarrecordcollection', | ||
name='expert_panel', | ||
field=models.OneToOneField(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='annotation.clinvarrecord'), | ||
), | ||
migrations.AddField( | ||
model_name='clinvarrecordcollection', | ||
name='max_stars', | ||
field=models.IntegerField(blank=True, null=True), | ||
), | ||
] |
26 changes: 26 additions & 0 deletions
26
annotation/migrations/0074_alter_clinvarrecord_options_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Generated by Django 4.2.2 on 2023-08-16 23:52 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('annotation', '0073_clinvarrecordcollection_allele_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='clinvarrecord', | ||
options={'ordering': ['-stars', '-date_last_evaluated'], 'verbose_name': 'ClinVar record'}, | ||
), | ||
migrations.AlterModelOptions( | ||
name='clinvarrecordcollection', | ||
options={'ordering': ['-max_stars', '-pk'], 'verbose_name': 'ClinVar record collection'}, | ||
), | ||
migrations.AlterField( | ||
model_name='clinvarrecord', | ||
name='genome_build', | ||
field=models.TextField(blank=True, null=True), | ||
), | ||
] |
28 changes: 28 additions & 0 deletions
28
annotation/migrations/0075_clinvarrecord_date_clinvar_created_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 4.2.2 on 2023-08-17 04:55 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('annotation', '0074_alter_clinvarrecord_options_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='clinvarrecord', | ||
name='date_clinvar_created', | ||
field=models.DateField(blank=True, null=True), | ||
), | ||
migrations.AddField( | ||
model_name='clinvarrecord', | ||
name='date_clinvar_updated', | ||
field=models.DateField(blank=True, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='clinvarrecord', | ||
name='submitter_date', | ||
field=models.DateField(blank=True, null=True), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.