Skip to content

Commit

Permalink
fix migration type
Browse files Browse the repository at this point in the history
  • Loading branch information
v-rocheleau committed Sep 14, 2023
1 parent 48ff585 commit 2a93fe4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chord_metadata_service/experiments/migrations/0009_v4_1_0.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from typing import List
from typing import List, Tuple
from django.db import migrations

LIB_STRATEGY_CONVERSIONS: List[tuple[str, str]] = [
LIB_STRATEGY_CONVERSIONS: List[Tuple[str, str]] = [
# Convert WES -> WXS ...
("WES", "WXS"),
("Other", "OTHER")
("Other", "OTHER"),
]

LIB_SELECTION_CONVERIONS: List[tuple[str, str]] = [
LIB_SELECTION_CONVERIONS: List[Tuple[str, str]] = [
("Random", "RANDOM"),
("Random PCR", "RANDOM PCR"),
("Exome capture", "other"), # 'Exome capture' no longer supported
Expand Down

0 comments on commit 2a93fe4

Please sign in to comment.