Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Add sequencing centers #484

Merged
merged 1 commit into from
Sep 1, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions kf_lib_data_ingest/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,14 +144,38 @@ class BGI:
NAME = "BGI@CHOP Genome Center"
KF_ID = "SC_WWEQ9HFY"

class BGI_CHINA:
NAME = "BGI"
KF_ID = "SC_FAD4KCQG"

class BROAD:
NAME = "Broad Institute"
KF_ID = "SC_DGDDQVYR"

class CBTN_UNSEQUENCED:
NAME = "CBTN Unsequenced"
KF_ID = "SC_31369RXZ"

class CHOP:
NAME = "CHOP"
KF_ID = "SC_9NSC532X"

class CHOP_DGD:
NAME = "CHOP DGD"
KF_ID = "SC_ZZPPF973"

class COMPLETE_GENOMICS:
NAME = "Complete Genomics"
KF_ID = "SC_D30SEWS4"

class FELINE_DIAGNOSTICS:
NAME = "Feline Diagnostics LLC"
KF_ID = "SC_CATTVETT"

class FG:
NAME = "fg"
KF_ID = "SC_XXXXXXX2"

class HUDSON_ALPHA:
NAME = "HudsonAlpha Institute for Biotechnology"
KF_ID = "SC_X1N69WJM"
Expand All @@ -176,10 +200,18 @@ class ST_JUDE:
NAME = "St Jude"
KF_ID = "SC_1K3QGW4V"

class TEMP:
NAME = "TEMP"
KF_ID = "SC_SJJ0B9GN"

class TGEN:
NAME = "The Translational Genomics Research Institute"
KF_ID = "SC_KQ9JZG3P"

class UNKNOWN_CHRIS_JONES:
NAME = "UNKNOWN:CHRIS_JONES"
KF_ID = "SC_5A2B1T4K"

class VIRTUAL:
NAME = "Virtual"
KF_ID = "SC_BATJDPHB"
Expand All @@ -188,6 +220,10 @@ class WASHU:
NAME = "Washington University"
KF_ID = "SC_K52V7463"

class YALE:
NAME = "Yale"
KF_ID = "SC_31W52VNX"

class STRATEGY:
LINKED_WGS = "Linked-Read WGS (10x Chromium)"
MRNA = "miRNA-Seq"
Expand Down