Skip to content

Commit

Permalink
chore: #1294: Store matching genotypes - stop sending and storing imp…
Browse files Browse the repository at this point in the history
…utation requests.
  • Loading branch information
zabeen committed May 2, 2024
1 parent dcef5df commit 9a276d1
Show file tree
Hide file tree
Showing 21 changed files with 2,234 additions and 396 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
modelBuilder.Entity<HomeworkSet>().SetUpModel();
modelBuilder.Entity<PatientDonorPair>().SetUpModel();
modelBuilder.Entity<ImputationSummary>().SetUpModel();
modelBuilder.Entity<SubjectGenotype>().SetUpModel();
modelBuilder.Entity<MatchingGenotypes>().SetUpModel();

base.OnModelCreating(modelBuilder);
}
Expand All @@ -50,6 +50,6 @@ protected override void OnModelCreating(ModelBuilder modelBuilder)
public DbSet<HomeworkSet> HomeworkSets { get; set; }
public DbSet<PatientDonorPair> PatientDonorPairs { get; set; }
public DbSet<ImputationSummary> ImputationSummaries { get; set; }
public DbSet<SubjectGenotype> SubjectGenotypes { get; set; }
public DbSet<MatchingGenotypes> MatchingGenotypes { get; set; }
}
}
Loading

0 comments on commit 9a276d1

Please sign in to comment.